Skip to content

Commit 57de85c

Browse files
authored
Merge pull request #12 from jonesbusy/feature/asm-plugin
Depends on ASM API plugin
2 parents 20d4d9d + 61af10d commit 57de85c

File tree

1 file changed

+27
-2
lines changed

1 file changed

+27
-2
lines changed

pom.xml

+27-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<revision>2.9.0</revision>
3030
<changelist>999999-SNAPSHOT</changelist>
3131
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
32-
<jenkins.version>2.414.3</jenkins.version>
32+
<jenkins.version>2.426.3</jenkins.version>
3333
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
3434
<spotless.check.skip>false</spotless.check.skip>
3535
<json-smart.version>2.5.0</json-smart.version>
@@ -39,7 +39,7 @@
3939
<dependencies>
4040
<dependency>
4141
<groupId>io.jenkins.tools.bom</groupId>
42-
<artifactId>bom-2.414.x</artifactId>
42+
<artifactId>bom-2.426.x</artifactId>
4343
<version>2857.v01a_0144eb_20b_</version>
4444
<type>pom</type>
4545
<scope>import</scope>
@@ -67,13 +67,38 @@
6767
<artifactId>json-path</artifactId>
6868
<version>${revision}</version>
6969
<exclusions>
70+
<exclusion>
71+
<groupId>org.ow2.asm</groupId>
72+
<artifactId>asm</artifactId>
73+
</exclusion>
74+
<!-- Provided by asm-api plugin -->
75+
<exclusion>
76+
<groupId>org.ow2.asm</groupId>
77+
<artifactId>asm-analysis</artifactId>
78+
</exclusion>
79+
<exclusion>
80+
<groupId>org.ow2.asm</groupId>
81+
<artifactId>asm-commons</artifactId>
82+
</exclusion>
83+
<exclusion>
84+
<groupId>org.ow2.asm</groupId>
85+
<artifactId>asm-tree</artifactId>
86+
</exclusion>
87+
<exclusion>
88+
<groupId>org.ow2.asm</groupId>
89+
<artifactId>asm-utils</artifactId>
90+
</exclusion>
7091
<!-- Provided by Jenkins core -->
7192
<exclusion>
7293
<groupId>org.slf4j</groupId>
7394
<artifactId>slf4j-api</artifactId>
7495
</exclusion>
7596
</exclusions>
7697
</dependency>
98+
<dependency>
99+
<groupId>io.jenkins.plugins</groupId>
100+
<artifactId>asm-api</artifactId>
101+
</dependency>
77102
</dependencies>
78103
<repositories>
79104
<repository>

0 commit comments

Comments
 (0)