Skip to content

Commit

Permalink
Fixing JENKINS-15242 org.objectweb.asm.ClassReader.accept error: Usin…
Browse files Browse the repository at this point in the history
…g pluginClassLoaderFirst.
  • Loading branch information
ognjenb committed Oct 8, 2012
1 parent 45d7260 commit ee58f71
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion pom.xml
Expand Up @@ -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>

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -240,6 +262,11 @@
<goal>test-hpl</goal>
<goal>validate</goal>
</goals>
<configuration>
<pluginFirstClassLoader>true</pluginFirstClassLoader>

</configuration>


</pluginExecutionFilter>
<action>
Expand Down

0 comments on commit ee58f71

Please sign in to comment.