Updated maven shade plugin to version 2.1
The currently used maven shade plugin still keeps references to the original classes in their constant pools around. This is never a problem at runtime, but for dependency tools which try to use the constant pool for determining dependencies will get confused (OSGI for example). This patch simply bumps the version and will implicetely fix fix http://jira.codehaus.org/browse/MSHADE-105 Closes #3254 Closes #3255
This commit is contained in:
parent
f9efa02a85
commit
3162f5b725
2
pom.xml
2
pom.xml
|
@ -365,7 +365,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-shade-plugin</artifactId>
|
<artifactId>maven-shade-plugin</artifactId>
|
||||||
<version>1.5</version>
|
<version>2.1</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<phase>package</phase>
|
<phase>package</phase>
|
||||||
|
|
Loading…
Reference in New Issue