Skip to content

Commit ddb1e6d

Browse files
authored
Merge pull request #685 from Azquelt/add-dependabot
Add dependabot configuration
2 parents 2bd43d6 + 4732ce4 commit ddb1e6d

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

.github/dependabot.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "maven" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "weekly"
12+
ignore:
13+
- dependency-name: "jakarta.*" # Don't offer updates for new Jakarta EE spec versions
14+
update-types:
15+
- version-update:semver-major
16+
- version-update:semver-minor
17+
- dependency-name: "org.eclipse.microprofile:microprofile-parent" # The major version of microprofile-parent is tied to the Jakarta EE version
18+
update-types:
19+
- version-update:semver-major
20+
- package-ecosystem: github-actions
21+
directory: "/"
22+
schedule:
23+
interval: weekly

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<plugin>
4242
<groupId>org.apache.maven.plugins</groupId>
4343
<artifactId>maven-checkstyle-plugin</artifactId>
44-
<version>3.2.1</version>
44+
<version>3.6.0</version>
4545
<configuration>
4646
<!-- https://github.com/checkstyle/checkstyle/issues/8240 -->
4747
<excludes>**/module-info.java</excludes>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@
3737
<rest-assured.version>5.5.1</rest-assured.version>
3838
<hamcrest.version>3.0</hamcrest.version>
3939
<httpclient.version>4.5.14</httpclient.version>
40-
<jackson.version>2.18.2</jackson.version>
40+
<jackson.version>2.18.3</jackson.version>
4141
<mp.rest-client-api.version>4.0</mp.rest-client-api.version>
4242
<jakarta.xml.bind-api.version>3.0.1</jakarta.xml.bind-api.version>
4343
<jakarta.validation-api.version>3.0.2</jakarta.validation-api.version>
4444
<!-- We can use the 3.x TCK BOM even though we use the 2.x parent because we're targetting Java 11 -->
45-
<version.microprofile.tck.bom>3.2</version.microprofile.tck.bom>
45+
<version.microprofile.tck.bom>3.4</version.microprofile.tck.bom>
4646
</properties>
4747

4848
<developers>

0 commit comments

Comments
 (0)