diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2017-04-07 11:46:29 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2017-04-07 12:52:17 -0700 |
commit | 4cb7d42a16bcc09c14a45825ea7c30bc588689bf (patch) | |
tree | 765ba116c9c52f486b424f913e83448c6e9c898d /sliapi/installer/pom.xml | |
parent | 75950bf862be183d9a2d64ad0ed4dafe30959184 (diff) |
Fix assembly xmls for maven-assembly-plugin v2.2+
Starting in version 2.2, maven-assembly-plugin
requires an id tag in the assembly descriptor xmls.
This patch allows the project to be built in
environments that use newer versions of
maven-assembly-plugin.
For details, see:
https://issues.apache.org/jira/browse/MASSEMBLY-517
Change-Id: I4eccccd8c1f9ffb510461507de8a88952ee8a0b3
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'sliapi/installer/pom.xml')
-rwxr-xr-x | sliapi/installer/pom.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sliapi/installer/pom.xml b/sliapi/installer/pom.xml index ec54c3e..51a956a 100755 --- a/sliapi/installer/pom.xml +++ b/sliapi/installer/pom.xml @@ -59,6 +59,7 @@ <descriptors> <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor> </descriptors> + <appendAssemblyId>false</appendAssemblyId> </configuration> </execution> <execution> @@ -73,6 +74,7 @@ <descriptors> <descriptor>src/assembly/assemble_installer_zip.xml</descriptor> </descriptors> + <appendAssemblyId>false</appendAssemblyId> </configuration> </execution> </executions> |