Skip to content

Commit

Permalink
Update Spring Boot (address CVEs) and few other dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Andriy Redko <drreta@gmail.com>
  • Loading branch information
reta committed Aug 25, 2024
1 parent b2f6d83 commit bb17c7f
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@
<jackson.version>2.17.2</jackson.version>

<java-driver.version>4.18.1</java-driver.version>
<micrometer.version>1.13.2</micrometer.version>
<micrometer.version>1.13.3</micrometer.version>

<!-- Used for Generated annotations -->
<javax-annotation-api.version>1.3.2</javax-annotation-api.version>

<!-- update together -->
<spring-boot.version>3.3.2</spring-boot.version>
<spring.version>6.1.11</spring.version>
<spring-boot.version>3.3.3</spring-boot.version>
<spring.version>6.1.12</spring.version>

<!-- MySQL connector is GPL, even if it has an OSS exception.
https://www.mysql.com/about/legal/licensing/foss-exception/
Expand All @@ -76,7 +76,7 @@
<git-commit-id.version>4.9.10</git-commit-id.version>

<!-- Test only dependencies -->
<junit-jupiter.version>5.10.3</junit-jupiter.version>
<junit-jupiter.version>5.11.0</junit-jupiter.version>
<mockito.version>5.12.0</mockito.version>
<assertj.version>3.26.3</assertj.version>
<awaitility.version>4.2.1</awaitility.version>
Expand Down Expand Up @@ -109,7 +109,7 @@
<maven-release-plugin.version>3.0.1</maven-release-plugin.version>
<maven-shade-plugin.version>3.5.3</maven-shade-plugin.version>
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version>
<maven-surefire-plugin.version>3.4.0</maven-surefire-plugin.version>
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
<wire-maven-plugin.version>1.3</wire-maven-plugin.version>
</properties>
Expand Down
7 changes: 7 additions & 0 deletions zipkin-collector/scribe/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,12 @@
<version>${awaitility.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
7 changes: 7 additions & 0 deletions zipkin-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,13 @@
</exclusions>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.linecorp.armeria</groupId>
<artifactId>armeria-junit5</artifactId>
Expand Down
7 changes: 7 additions & 0 deletions zipkin-storage/elasticsearch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,12 @@
<version>${armeria.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

0 comments on commit bb17c7f

Please sign in to comment.