Skip to content

Commit 8536109

Browse files
committed
fix: Remove unnecessary dependency on org.ow2.asm
1 parent 8d6f287 commit 8536109

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

pom.xml

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -176,13 +176,6 @@
176176
<groupId>org.apache.maven.plugins</groupId>
177177
<artifactId>maven-surefire-plugin</artifactId>
178178
<version>2.22.2</version>
179-
<dependencies>
180-
<dependency>
181-
<groupId>org.ow2.asm</groupId>
182-
<artifactId>asm</artifactId>
183-
<version>6.2.1</version>
184-
</dependency>
185-
</dependencies>
186179
<configuration>
187180
<!-- Sets the VM argument line used when unit tests are run. -->
188181
<argLine>${surefireArgLine}</argLine>
@@ -195,13 +188,6 @@
195188
<groupId>org.apache.maven.plugins</groupId>
196189
<artifactId>maven-failsafe-plugin</artifactId>
197190
<version>2.22.2</version>
198-
<dependencies>
199-
<dependency>
200-
<groupId>org.ow2.asm</groupId>
201-
<artifactId>asm</artifactId>
202-
<version>6.2.1</version>
203-
</dependency>
204-
</dependencies>
205191
<configuration>
206192
<!-- Sets the VM argument line used when integration tests are run. -->
207193
<argLine>${failsafeArgLine}</argLine>
@@ -334,6 +320,7 @@
334320
<executions>
335321
<execution>
336322
<id>attach-sources</id>
323+
<phase>install</phase>
337324
<goals>
338325
<goal>jar-no-fork</goal>
339326
</goals>
@@ -348,6 +335,7 @@
348335
<executions>
349336
<execution>
350337
<id>attach-javadocs</id>
338+
<phase>install</phase>
351339
<goals>
352340
<goal>aggregate-jar</goal>
353341
</goals>

0 commit comments

Comments
 (0)