GUACAMOLE-1298: Remove guacamole-client .tar.gz archive build.

Children of the parent project will inherit the parent's build plugins,
which breaks everything when each child project attempts to build its
own source archive.
This commit is contained in:
Michael Jumper
2021-03-25 20:00:38 -07:00
parent 53fe6e34f8
commit b2845ebc4b
2 changed files with 0 additions and 82 deletions

28
pom.xml
View File

@@ -86,34 +86,6 @@
<build>
<plugins>
<!-- Assembly plugin - for easy distribution -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.3</version>
<!-- Build project archive -->
<configuration>
<finalName>${project.artifactId}-${project.version}</finalName>
<appendAssemblyId>false</appendAssemblyId>
<tarLongFileMode>gnu</tarLongFileMode>
<descriptors>
<descriptor>project-assembly.xml</descriptor>
</descriptors>
</configuration>
<!-- Bind archive build to package phase -->
<executions>
<execution>
<id>make-source-archive</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Verify format using Apache RAT -->
<plugin>
<groupId>org.apache.rat</groupId>