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
25 changes: 12 additions & 13 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ executors:
j21:
docker:
- image: 'cimg/openjdk:21.0'
j23:
j25:
docker:
- image: 'cimg/openjdk:23.0'
- image: 'cimg/openjdk:25.0'

jobs:

Expand All @@ -133,7 +133,7 @@ jobs:
default: 'single'
jdk:
type: 'string'
default: 'j21'
default: 'j25'
args:
type: 'string'
default: ''
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
default: 'single'
jdk:
type: 'string'
default: 'j21'
default: 'j25'
args:
type: 'string'
default: ''
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
- store_cache

test-non-func:
executor: 'j21'
executor: 'j25'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Java Version Mismatch Causes Build Failures

The test-non-func and test-non-func-shaded jobs now use the j25 executor (Java 25), but their install-sdk step still installs GraalVM 21.0.2-graalce (Java 21). This Java version mismatch could cause build failures or compatibility issues.

Additional Locations (1)

Fix in Cursor Fix in Web

steps:
- timeout
- checkout
Expand All @@ -286,7 +286,7 @@ jobs:
# https://issues.apache.org/jira/browse/MSHADE-206
# https://issues.apache.org/jira/browse/MNG-5899
test-non-func-shaded:
executor: 'j21'
executor: 'j25'
steps:
- timeout
- checkout
Expand Down Expand Up @@ -356,7 +356,7 @@ jobs:
- store_cache

resilience-test:
executor: 'j21'
executor: 'j25'
resource_class: 'large'
steps:
- timeout
Expand Down Expand Up @@ -387,7 +387,7 @@ jobs:
# https://issues.apache.org/jira/browse/MSHADE-206
# https://issues.apache.org/jira/browse/MNG-5899
resilience-test-shaded:
executor: 'j21'
executor: 'j25'
resource_class: 'large'
steps:
- timeout
Expand Down Expand Up @@ -502,7 +502,7 @@ workflows:
jdk:
- 'j17'
- 'j21'
- 'j23'
- 'j25'
filters:
tags:
only: /^v.*/
Expand All @@ -515,16 +515,15 @@ workflows:
matrix:
parameters:
args:
- '-Dadb.jackson.version=2.19.0'
- '-Dadb.jackson.version=2.18.3'
- '-Dadb.jackson.version=2.20.0'
- '-Dadb.jackson.version=2.19.2'
- '-Dadb.jackson.version=2.18.4'
- '-Dadb.jackson.version=2.17.3'
- '-Dadb.jackson.version=2.16.2'
- '-Dadb.jackson.version=2.15.4'
- '-Dadb.jackson.version=2.14.3'
- '-Dadb.jackson.version=2.13.5'
- '-Dadb.jackson.version=2.12.7'
- '-Dadb.jackson.version=2.11.4'
- '-Dadb.jackson.version=2.10.5'
filters:
tags:
only: /^v.*/
Expand Down
22 changes: 11 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>2.19.0</version>
<version>2.20.0</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down Expand Up @@ -144,7 +144,7 @@
<dependency>
<groupId>com.arangodb</groupId>
<artifactId>jackson-dataformat-velocypack</artifactId>
<version>4.6.1</version>
<version>4.6.2</version>
</dependency>
<dependency>
<groupId>com.arangodb</groupId>
Expand Down Expand Up @@ -177,7 +177,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.5.0</version>
<version>3.6.2</version>
<executions>
<execution>
<id>enforce</id>
Expand Down Expand Up @@ -215,7 +215,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.18.0</version>
<version>2.19.1</version>
<configuration>
<ruleSet>
<rules>
Expand Down Expand Up @@ -264,7 +264,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.0</version>
<version>3.14.1</version>
<configuration>
<compilerArgs>
<arg>-Xlint:unchecked</arg>
Expand Down Expand Up @@ -299,7 +299,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.3</version>
<version>3.5.4</version>
<configuration>
<skip>true</skip>
</configuration>
Expand All @@ -322,12 +322,12 @@
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>5.1.0.4751</version>
<version>5.2.0.4988</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.0</version>
<version>3.6.1</version>
</plugin>
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
Expand All @@ -337,17 +337,17 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>3.5.3</version>
<version>3.5.4</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.7.0</version>
<version>1.7.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<version>3.12.0</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down
6 changes: 3 additions & 3 deletions release-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<version>3.2.8</version>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
Expand Down Expand Up @@ -155,7 +155,7 @@
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<version>0.9.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
Expand All @@ -174,7 +174,7 @@
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.9.3.0</version>
<version>4.9.6.0</version>
<configuration>
<excludeFilterFile>spotbugs/spotbugs-exclude.xml</excludeFilterFile>
</configuration>
Expand Down
2 changes: 1 addition & 1 deletion test-functional/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
<plugin>
<groupId>org.graalvm.buildtools</groupId>
<artifactId>native-maven-plugin</artifactId>
<version>0.10.6</version>
<version>0.11.1</version>
<extensions>true</extensions>
<executions>
<execution>
Expand Down
6 changes: 3 additions & 3 deletions test-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<properties>
<maven.build.cache.enabled>false</maven.build.cache.enabled>
<adb.jackson.version>2.19.0</adb.jackson.version>
<adb.jackson.version>2.20.0</adb.jackson.version>
<sonar.skip>true</sonar.skip>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
Expand Down Expand Up @@ -95,7 +95,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.27.3</version>
<version>3.27.6</version>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
Expand Down Expand Up @@ -131,7 +131,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.5.3</version>
<version>3.5.4</version>
<configuration>
<systemPropertyVariables>
<junit.platform.listeners.uid.tracking.enabled>true</junit.platform.listeners.uid.tracking.enabled>
Expand Down
2 changes: 1 addition & 1 deletion test-resilience/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependency>
<groupId>eu.rekawek.toxiproxy</groupId>
<artifactId>toxiproxy-java</artifactId>
<version>2.1.7</version>
<version>2.1.11</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down