GUACAMOLE-210: Create guacamole-auth-openid bundle .tar.gz as part of build.

This commit is contained in:
Michael Jumper
2017-02-21 11:43:35 -08:00
parent a8f97b548e
commit 1034612a47
2 changed files with 75 additions and 0 deletions

View File

@@ -73,6 +73,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>
<!-- Verify format using Apache RAT -->
<plugin>
<groupId>org.apache.rat</groupId>