upgrade to the latest assembly plugin and use artifact id (though not in distributions)
This commit is contained in:
parent
eebf8f8f60
commit
2dfee54de7
2
pom.xml
2
pom.xml
|
@ -378,7 +378,9 @@
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
|
<version>2.2.2</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
|
<appendAssemblyId>false</appendAssemblyId>
|
||||||
<outputDirectory>${project.build.directory}/releases/</outputDirectory>
|
<outputDirectory>${project.build.directory}/releases/</outputDirectory>
|
||||||
<descriptors>
|
<descriptors>
|
||||||
<descriptor>${basedir}/src/main/assemblies/targz-bin.xml</descriptor>
|
<descriptor>${basedir}/src/main/assemblies/targz-bin.xml</descriptor>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<assembly>
|
<assembly>
|
||||||
<id></id>
|
<id>targz</id>
|
||||||
<formats>
|
<formats>
|
||||||
<format>tar.gz</format>
|
<format>tar.gz</format>
|
||||||
</formats>
|
</formats>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<assembly>
|
<assembly>
|
||||||
<id></id>
|
<id>zip</id>
|
||||||
<formats>
|
<formats>
|
||||||
<format>zip</format>
|
<format>zip</format>
|
||||||
</formats>
|
</formats>
|
||||||
|
|
Loading…
Reference in New Issue