Skip to content

Commit 41da935

Browse files
committed
chore(deps): Move versions to supperpom
Signed-off-by: Helio Chissini de Castro <[email protected]>
1 parent 2dfa4af commit 41da935

File tree

2 files changed

+13
-19
lines changed

2 files changed

+13
-19
lines changed

clients/client/pom.xml

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -70,37 +70,22 @@
7070
<dependency>
7171
<groupId>org.mockito</groupId>
7272
<artifactId>mockito-core</artifactId>
73-
<version>2.28.2</version>
74-
<scope>test</scope>
7573
</dependency>
7674
<dependency>
7775
<groupId>net.bytebuddy</groupId>
7876
<artifactId>byte-buddy</artifactId>
79-
<version>1.15.10</version>
80-
<scope>test</scope>
8177
</dependency>
8278
<dependency>
8379
<groupId>org.ow2.asm</groupId>
8480
<artifactId>asm</artifactId>
85-
<version>7.1</version>
86-
<scope>test</scope>
8781
</dependency>
8882
<dependency>
8983
<groupId>org.ow2.asm</groupId>
9084
<artifactId>asm-util</artifactId>
91-
<version>7.1</version>
92-
<scope>test</scope>
93-
</dependency>
94-
<dependency>
95-
<groupId>org.ow2.asm</groupId>
96-
<artifactId>asm-commons</artifactId>
97-
<version>9.7.1</version>
98-
<scope>test</scope>
9985
</dependency>
10086
<dependency>
10187
<groupId>nl.jqno.equalsverifier</groupId>
10288
<artifactId>equalsverifier</artifactId>
103-
<scope>test</scope>
10489
</dependency>
10590
<dependency>
10691
<groupId>com.github.tomakehurst</groupId>
@@ -109,8 +94,6 @@
10994
<dependency>
11095
<groupId>jakarta.servlet</groupId>
11196
<artifactId>jakarta.servlet-api</artifactId>
112-
<version>${jakarta.servlet-api.version}</version>
113-
<scope>test</scope>
11497
</dependency>
11598
</dependencies>
11699

@@ -119,7 +102,6 @@
119102
<plugin>
120103
<groupId>org.apache.maven.plugins</groupId>
121104
<artifactId>maven-failsafe-plugin</artifactId>
122-
<version>3.0.0-M4</version>
123105
<executions>
124106
<execution>
125107
<id>integration-tests</id>
@@ -138,4 +120,4 @@
138120
</plugin>
139121
</plugins>
140122
</build>
141-
</project>
123+
</project>

pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@
137137
<maven-javadoc.version>3.6.2</maven-javadoc.version>
138138
<mockito.version>4.7.0</mockito.version>
139139
<okhttp.version>4.10.0</okhttp.version>
140+
<org.ow2.asm.version>9.7.1</org.ow2.asm.version>
140141
<org.spdx.java.spdx.library.version>1.1.1</org.spdx.java.spdx.library.version>
141142
<org.spdx.tools.java.version>1.1.5</org.spdx.tools.java.version>
142143
<package-url.version>1.5.0</package-url.version>
@@ -176,12 +177,23 @@
176177
<groupId>net.bytebuddy</groupId>
177178
<artifactId>byte-buddy</artifactId>
178179
<version>${byte-buddy.version}</version>
180+
<scope>test</scope>
179181
</dependency>
180182
<dependency>
181183
<groupId>com.squareup.okhttp3</groupId>
182184
<artifactId>okhttp</artifactId>
183185
<version>${okhttp.version}</version>
184186
</dependency>
187+
<dependency>
188+
<groupId>org.ow2.asm</groupId>
189+
<artifactId>asm</artifactId>
190+
<version>${org.ow2.asm.version}</version>
191+
</dependency>
192+
<dependency>
193+
<groupId>org.ow2.asm</groupId>
194+
<artifactId>asm-util</artifactId>
195+
<version>${org.ow2.asm.version}</version>
196+
</dependency>
185197
<dependency>
186198
<groupId>com.github.cliftonlabs</groupId>
187199
<artifactId>json-simple</artifactId>

0 commit comments

Comments
 (0)