Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fixing JENKINS-15242 org.objectweb.asm.ClassReader.accept error: Usin…
…g pluginClassLoaderFirst.
- Loading branch information
Showing
with
28 additions
and
1 deletion.
-
+28
−1
pom.xml
|
@@ -92,16 +92,19 @@ |
|
|
<groupId>org.kohsuke</groupId> |
|
|
<artifactId>asm3</artifactId> |
|
|
<version>3.3.0</version> |
|
|
<scope>runtime</scope> |
|
|
</dependency> |
|
|
<dependency> |
|
|
<groupId>asm</groupId> |
|
|
<artifactId>asm</artifactId> |
|
|
<version>3.3.1</version> |
|
|
<scope>runtime</scope> |
|
|
</dependency> |
|
|
<dependency> |
|
|
<groupId>asm</groupId> |
|
|
<artifactId>asm-commons</artifactId> |
|
|
<version>3.3.1</version> |
|
|
<scope>runtime</scope> |
|
|
</dependency> |
|
|
</dependencies> |
|
|
|
|
@@ -212,7 +215,26 @@ |
|
|
</execution> |
|
|
</executions> |
|
|
</plugin> |
|
|
</plugins> |
|
|
<plugin> |
|
|
<groupId>org.jenkins-ci.tools</groupId> |
|
|
<artifactId> |
|
|
maven-hpi-plugin |
|
|
</artifactId> |
|
|
<executions> |
|
|
<execution> |
|
|
<phase>compile</phase> |
|
|
<goals> |
|
|
<goal>hpi</goal> |
|
|
</goals> |
|
|
</execution> |
|
|
</executions> |
|
|
|
|
|
<configuration> |
|
|
<pluginFirstClassLoader>true</pluginFirstClassLoader> |
|
|
<maskClasses>org.objectweb.asm.</maskClasses> |
|
|
</configuration> |
|
|
</plugin> |
|
|
</plugins> |
|
|
<pluginManagement> |
|
|
<plugins> |
|
|
<!--This plugin's configuration is used to store Eclipse m2e |
|
@@ -240,6 +262,11 @@ |
|
|
<goal>test-hpl</goal> |
|
|
<goal>validate</goal> |
|
|
</goals> |
|
|
<configuration> |
|
|
<pluginFirstClassLoader>true</pluginFirstClassLoader> |
|
|
|
|
|
</configuration> |
|
|
|
|
|
|
|
|
</pluginExecutionFilter> |
|
|
<action> |
|
|