Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
Use ASM library plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Mar 14, 2024
1 parent f5ea36e commit b54177c
Showing 1 changed file with 30 additions and 17 deletions.
47 changes: 30 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,11 @@ THE SOFTWARE.
<changelist>-SNAPSHOT</changelist>
<jacoco.version>0.8.11</jacoco.version>
<!-- see https://www.jenkins.io/changelog-stable/ for changelog of the LTS releases -->
<jenkins.version>2.401.3</jenkins.version>
<jenkins.version>2.426.3</jenkins.version>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<!-- Do not fail if tests are run without argLine -->
<argLine />
<test>!hudson.plugins.jacoco.e2e.E2ETest</test>
</properties>

<licenses>
Expand Down Expand Up @@ -108,7 +109,7 @@ THE SOFTWARE.
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection>
<developerConnection>scm:git:git@github.com:${gitHubRepo}.git</developerConnection>
<url>https://github.com/${gitHubRepo}</url>
<tag>jacoco-3.3.5</tag>
<tag>${scmTag}</tag>
</scm>

<distributionManagement>
Expand All @@ -122,8 +123,8 @@ THE SOFTWARE.
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.401.x</artifactId>
<version>2465.va_e76ed7b_3061</version>
<artifactId>bom-2.426.x</artifactId>
<version>2884.vc36b_64ce114a_</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand All @@ -140,21 +141,33 @@ THE SOFTWARE.
<groupId>org.jacoco</groupId>
<artifactId>org.jacoco.report</artifactId> <!-- we're done with ReportMojo now, so we don't need to depend on the maven plugin anymore -->
<version>${jacoco.version}</version>
<exclusions>
<!-- Provided by asm-api plugin -->
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
</exclusion>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-analysis</artifactId>
</exclusion>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
</exclusion>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
</exclusion>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-util</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.6</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>9.6</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
<version>9.6</version>
<groupId>io.jenkins.plugins</groupId>
<artifactId>asm-api</artifactId>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
Expand Down

0 comments on commit b54177c

Please sign in to comment.