Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "maven" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
ignore:
- dependency-name: "jakarta.*" # Don't offer updates for new Jakarta EE spec versions
update-types:
- version-update:semver-major
- version-update:semver-minor
- dependency-name: "org.eclipse.microprofile:microprofile-parent" # The major version of microprofile-parent is tied to the Jakarta EE version
update-types:
- version-update:semver-major
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.2.1</version>
<version>3.6.0</version>
<configuration>
<!-- https://github.com/checkstyle/checkstyle/issues/8240 -->
<excludes>**/module-info.java</excludes>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@
<rest-assured.version>5.5.1</rest-assured.version>
<hamcrest.version>3.0</hamcrest.version>
<httpclient.version>4.5.14</httpclient.version>
<jackson.version>2.18.2</jackson.version>
<jackson.version>2.18.3</jackson.version>
<mp.rest-client-api.version>4.0</mp.rest-client-api.version>
<jakarta.xml.bind-api.version>3.0.1</jakarta.xml.bind-api.version>
<jakarta.validation-api.version>3.0.2</jakarta.validation-api.version>
<!-- We can use the 3.x TCK BOM even though we use the 2.x parent because we're targetting Java 11 -->
<version.microprofile.tck.bom>3.2</version.microprofile.tck.bom>
<version.microprofile.tck.bom>3.4</version.microprofile.tck.bom>
</properties>

<developers>
Expand Down
Loading