aboutsummaryrefslogtreecommitdiffstats
path: root/properties-node/installer/pom.xml
diff options
context:
space:
mode:
authorGuo Ruijing <ruijing.guo@intel.com>2017-05-07 20:16:41 +0000
committerGuo Ruijing <ruijing.guo@intel.com>2017-05-07 20:19:42 +0000
commit1085e3c7a76889dda96a9d86af3d1a620587e97f (patch)
tree9179e30fd9128b476378daa1358a6a4ba0084ab1 /properties-node/installer/pom.xml
parent4f070a81d0fb89b1e74776aac7366b7d628db0a4 (diff)
fix maven local build issue
onap jenkins use maven-assembly-plugin 2.2-beta-5. without fix, local build use maven-assembly-plugin 2.4.1 and build fails as: Assembly is incorrectly configured: null. to fix local build issue: 1. update to maven-assembly-plugin 2.6 2. add AssemblyId configuration which is needed for assembly >= 2.2 Change-Id: Ic14c86c5164157c312df5ef85272f123fde9217d Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
Diffstat (limited to 'properties-node/installer/pom.xml')
-rwxr-xr-xproperties-node/installer/pom.xml3
1 files changed, 3 insertions, 0 deletions
diff --git a/properties-node/installer/pom.xml b/properties-node/installer/pom.xml
index 0f6d623..12c0a1b 100755
--- a/properties-node/installer/pom.xml
+++ b/properties-node/installer/pom.xml
@@ -46,6 +46,7 @@
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
+ <version>2.6</version>
<executions>
<execution>
<id>maven-repo-zip</id>
@@ -59,6 +60,7 @@
<descriptors>
<descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
</descriptors>
+ <appendAssemblyId>false</appendAssemblyId>
</configuration>
</execution>
<execution>
@@ -73,6 +75,7 @@
<descriptors>
<descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
</descriptors>
+ <appendAssemblyId>false</appendAssemblyId>
</configuration>
</execution>
</executions>