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
2 changes: 1 addition & 1 deletion okapi-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<dependency> <!-- for log4j2 asynchronous loggers -->
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
<version>3.4.4</version>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
Expand Down
55 changes: 20 additions & 35 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,32 +30,17 @@
<dependencyManagement>
<dependencies>

<!--
Fix DoS when parsing long number:
https://github.com/FasterXML/jackson-core/security/advisories/GHSA-72hv-8253-57qq
https://github.com/FasterXML/jackson-core/pull/1555/changes
https://github.com/vert-x3/vertx-dependencies/pull/242
Remove this jackson-bom dependency when vertx-stack-depchain ships with fixed jackson version
-->
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>2.18.6</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-bom</artifactId>
<version>2.25.3</version>
<version>2.25.4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-stack-depchain</artifactId>
<version>5.0.7</version> <!-- also update depending versions below! -->
<version>5.0.10</version> <!-- also update depending versions below! -->
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -64,14 +49,14 @@
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-bom</artifactId>
<version>1.16.2</version> <!-- https://github.com/vert-x3/vertx-micrometer-metrics/blob/master/pom.xml#L41 -->
<version>1.16.3</version> <!-- https://github.com/vert-x3/vertx-micrometer-metrics/blob/master/pom.xml#L39 -->
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast</artifactId>
<version>5.3.8</version> <!-- https://github.com/vert-x3/vertx-hazelcast/blob/4.x/.github/workflows/ci-4.x.yml -->
<version>5.3.8</version> <!-- https://github.com/vert-x3/vertx-hazelcast/blob/master/pom.xml#L24 -->
</dependency>

<!-- END: versions that depend on the vertx-stack-depchain version -->
Expand All @@ -95,7 +80,7 @@
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>5.5.6</version>
<version>5.5.7</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand All @@ -121,14 +106,14 @@
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>6.0.0</version>
<version>6.0.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
<version>2.0.3</version>
<version>2.0.4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -143,12 +128,12 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.20.0</version>
<version>2.21.0</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-bom</artifactId>
<version>5.20.0</version>
<version>5.23.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -157,16 +142,16 @@
<artifactId>awaitility</artifactId>
<version>4.3.0</version>
</dependency>
<!-- mockito 2.20.0 uses byte-buddy 1.17.7 , use later version for JDK 25 support -->
<!-- mockito 5.23.0 uses byte-buddy 1.17.7, use later version for JDK 25 support -->
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.17.8</version>
<version>1.18.7</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>1.17.8</version>
<version>1.18.7</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand All @@ -178,7 +163,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.0</version>
<version>3.6.2</version>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<filters>
Expand All @@ -194,12 +179,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<version>3.5.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
<version>3.5.0</version>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
Expand All @@ -212,7 +197,7 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.0</version>
<version>3.15.0</version>
<configuration>
<release>21</release>
<compilerArgument>-Xlint:unchecked</compilerArgument>
Expand All @@ -238,7 +223,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
<version>3.3.1</version>
<configuration>
<preparationGoals>clean verify</preparationGoals>
<tagNameFormat>v@{project.version}</tagNameFormat>
Expand Down Expand Up @@ -276,12 +261,12 @@

<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.2</version>
<version>3.5.5</version>
</plugin>

<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -295,7 +280,7 @@

<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<version>3.12.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down
Loading