365932 - Produce jetty-websocket aggregate jar for android use

+ Adding maven-shade-plugin default configuration (no bytecode
  manipulation) to produce an aggregate classifier jar for
  jetty-websocket use.
This commit is contained in:
Joakim Erdfelt 2011-12-07 10:17:20 -07:00
parent 0689e05e9b
commit 6b54650046
1 changed files with 18 additions and 0 deletions

View File

@ -92,6 +92,24 @@
<onlyAnalyze>org.eclipse.jetty.websocket.*</onlyAnalyze>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>make-aggregate-jar</id>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedClassifierName>aggregate</shadedClassifierName>
<shadedArtifactAttached>true</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>