o lock verison of shade

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@530963 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2007-04-21 01:21:05 +00:00
parent d8e729fed2
commit 93c8d30067
1 changed files with 21 additions and 29 deletions

View File

@ -40,19 +40,6 @@ under the License.
</resource>
</resources>
<plugins>
<!--
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
<configuration>
<finalName>${artifactId}-${bundleVersion}</finalName>
<descriptor>src/main/assembly/dep.xml</descriptor>
<archive>
<manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
-->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
@ -72,32 +59,37 @@ under the License.
</executions>
</plugin>
<plugin>
<artifactId>minijar-maven-plugin</artifactId>
<artifactId>shade-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<version>1.0-alpha-4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>ueberjar</goal>
<goal>shade</goal>
</goals>
<configuration>
<stripUnusedClasses>false</stripUnusedClasses>
<excludes>
<exclude>classworlds:classworlds</exclude>
<exclude>junit:junit</exclude>
<exclude>jmock:jmock</exclude>
<exclude>xml-apis:xml-apis</exclude>
</excludes>
<!--
<dependenciesToHide>
<dependencyHide>org.codehaus.plexus:plexus-utils</dependencyHide>
<dependencyHide>jdom:jdom</dependencyHide>
</dependenciesToHide>
-->
<artifactSet>
<excludes>
<exclude>classworlds:classworlds</exclude>
<exclude>junit:junit</exclude>
<exclude>jmock:jmock</exclude>
<exclude>xml-apis:xml-apis</exclude>
</excludes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.codehaus.plexus.util</pattern>
<excludes>
<exclude>org.codehaus.plexus.util.xml.Xpp3Dom</exclude>
<exclude>org.codehaus.plexus.util.xml.pull.*</exclude>
</excludes>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugin>
</plugins>
</build>
<dependencies>