Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the build-dependencies group with 7 updates #4434

Merged
merged 2 commits into from
Dec 17, 2024
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
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ updates:
- dependency-name: "jakarta.enterprise:jakarta.enterprise.cdi-api"
- dependency-name: "jakarta.xml.bind:jakarta.xml.bind-api"
- dependency-name: "net.bytebuddy:*"
# Because we stay on a particular version of CDI that matches the one in ORM
# we don't want always want to get the latest Weld version:
- dependency-name: "org.jboss.weld.se:*"
update-types: ["version-update:semver-major"]
# Sticking to Derby 10.15 for now since later versions require JDK 17+, and we need to test with JDK 11.
# See https://db.apache.org/derby/derby_downloads.html
- dependency-name: "org.apache.derby:*"
Expand Down
2 changes: 1 addition & 1 deletion .mvn/extensions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<extension>
<groupId>com.gradle</groupId>
<artifactId>develocity-maven-extension</artifactId>
<version>1.22.2</version>
<version>1.23</version>
</extension>
<extension>
<groupId>com.gradle</groupId>
Expand Down
10 changes: 5 additions & 5 deletions build/parents/build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<!-- slf4j: used by the AWS SDK -->
<version.org.slf4j>1.7.36</version.org.slf4j>

<!-- >>> ORM 6 with Jakarta Persistence -->
<!-- >>> ORM 7 with Jakarta Persistence -->
<!-- IMPORTANT: Make sure that version.jakarta.persistence aligns with the imported version! -->
<!--
NOTE: when Hibernate ORM updates Byte Buddy, make sure to check Jenkinsfile to see if
Expand Down Expand Up @@ -128,9 +128,9 @@
<!-- Test dependencies -->

<!-- >>> Common -->
<version.log4j>2.24.1</version.log4j>
<version.log4j>2.24.3</version.log4j>
<version.junit>4.13.2</version.junit>
<version.junit-jupiter>5.11.3</version.junit-jupiter>
<version.junit-jupiter>5.11.4</version.junit-jupiter>
<version.junit-platform-suite-engine>1.10.0</version.junit-platform-suite-engine>
<version.org.osgi.core>6.0.0</version.org.osgi.core>
<!-- Make sure to update Ryuk container version in `ryuk.Dockerfile` whenever updating testcontainers to align it with the lib. -->
Expand All @@ -156,7 +156,7 @@
- remove and generate the files in mapper/orm-outbox-polling/src/main/avro/generated
-->
<version.org.apache.avro>1.12.0</version.org.apache.avro>
<version.org.jboss.weld>5.1.3.Final</version.org.jboss.weld>
<version.org.jboss.weld>5.1.4.Final</version.org.jboss.weld>

<!-- >>> JDBC Drivers -->
<version.com.h2database>2.3.232</version.com.h2database>
Expand Down Expand Up @@ -1056,7 +1056,7 @@
<rules>
<bannedDependencies>
<excludes>
<!-- As we are using ORM 6 and Jakarta we don't want javax dependencies: -->
<!-- As we are using ORM 7 and Jakarta we don't want javax dependencies: -->
<exclude>javax.persistence:javax.persistence-api</exclude>
<exclude>javax.transaction:javax.transaction-api</exclude>
<exclude>javax.enterprise:cdi-api</exclude>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@
<version.sonar.plugin>5.0.0.4389</version.sonar.plugin>
<version.scripting.plugin>3.0.0</version.scripting.plugin>
<version.org.apache.groovy.groovy-jsr223>4.0.13</version.org.apache.groovy.groovy-jsr223>
<version.com.puppycrawl.tools.checkstyle>10.20.2</version.com.puppycrawl.tools.checkstyle>
<version.com.puppycrawl.tools.checkstyle>10.21.0</version.com.puppycrawl.tools.checkstyle>
<version.versions.plugin>2.18.0</version.versions.plugin>
<version.maven-wrapper-plugin>3.3.2</version.maven-wrapper-plugin>
<version.org.eclipse.m2e.lifecycle-mapping>1.0.0</version.org.eclipse.m2e.lifecycle-mapping>
Expand Down
Loading