Skip to content

Instantly share code, notes, and snippets.

@winteryoung
Last active February 22, 2016 13:02
Show Gist options
  • Save winteryoung/3a1de8cd30f17b36ba65 to your computer and use it in GitHub Desktop.
Save winteryoung/3a1de8cd30f17b36ba65 to your computer and use it in GitHub Desktop.
maven pom - repackage
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>jarjar-maven-plugin</artifactId>
<version>1.9</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jarjar</goal>
</goals>
<configuration>
<includes>
<include>org.ow2.asm:asm</include>
</includes>
<rules>
<rule>
<pattern>org.objectweb.asm.**</pattern>
<result>com.github.winteryoung.yanwte.internals.asm.@1</result>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment