Skip to content

Commit

Permalink
chore(deps): Move versions to supperpom
Browse files Browse the repository at this point in the history
Signed-off-by: Helio Chissini de Castro <[email protected]>
  • Loading branch information
heliocastro committed Nov 25, 2024
1 parent 2dfa4af commit 41da935
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 19 deletions.
20 changes: 1 addition & 19 deletions clients/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,37 +70,22 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.28.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.15.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>7.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-util</artifactId>
<version>7.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>9.7.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>nl.jqno.equalsverifier</groupId>
<artifactId>equalsverifier</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
Expand All @@ -109,8 +94,6 @@
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>${jakarta.servlet-api.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

Expand All @@ -119,7 +102,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M4</version>
<executions>
<execution>
<id>integration-tests</id>
Expand All @@ -138,4 +120,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
12 changes: 12 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@
<maven-javadoc.version>3.6.2</maven-javadoc.version>
<mockito.version>4.7.0</mockito.version>
<okhttp.version>4.10.0</okhttp.version>
<org.ow2.asm.version>9.7.1</org.ow2.asm.version>
<org.spdx.java.spdx.library.version>1.1.1</org.spdx.java.spdx.library.version>
<org.spdx.tools.java.version>1.1.5</org.spdx.tools.java.version>
<package-url.version>1.5.0</package-url.version>
Expand Down Expand Up @@ -176,12 +177,23 @@
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>${byte-buddy.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>${okhttp.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>${org.ow2.asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-util</artifactId>
<version>${org.ow2.asm.version}</version>
</dependency>
<dependency>
<groupId>com.github.cliftonlabs</groupId>
<artifactId>json-simple</artifactId>
Expand Down

0 comments on commit 41da935

Please sign in to comment.