diff options
Diffstat (limited to 'artifactbroker/packages/pom.xml')
-rw-r--r-- | artifactbroker/packages/pom.xml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/artifactbroker/packages/pom.xml b/artifactbroker/packages/pom.xml index a90cd49..29548b1 100644 --- a/artifactbroker/packages/pom.xml +++ b/artifactbroker/packages/pom.xml @@ -45,6 +45,13 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <appendAssemblyId>false</appendAssemblyId> + <descriptors> + <descriptor>src/main/package/assembly.xml</descriptor> + </descriptors> + <finalName>${project.artifactId}-${project.version}</finalName> + </configuration> <executions> <execution> <id>generate-complete-tar</id> @@ -52,12 +59,6 @@ <goals> <goal>single</goal> </goals> - <configuration> - <appendAssemblyId>false</appendAssemblyId> - <descriptors> - <descriptor>src/main/package/tarball/assembly.xml</descriptor> - </descriptors> - </configuration> </execution> </executions> </plugin> |