GUACAMOLE-136: Bundle guacamole-auth-duo .jar into .tar.gz, along with licenses.

This commit is contained in:
Michael Jumper
2016-12-05 20:31:03 -08:00
parent 3457bcfc84
commit c3c553a899
2 changed files with 75 additions and 0 deletions

View File

@@ -133,6 +133,28 @@
</executions>
</plugin>
<!-- Assembly plugin - for easy distribution -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<finalName>${project.artifactId}-${project.version}</finalName>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/main/assembly/dist.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-dist-archive</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Copy dependencies prior to packaging -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>