aboutsummaryrefslogtreecommitdiffstats
path: root/platform-logic/installer/pom.xml
diff options
context:
space:
mode:
authorGuo Ruijing <ruijing.guo@intel.com>2017-05-07 21:14:31 +0000
committerPatrick Brady <pb071s@att.com>2017-05-16 19:46:00 +0000
commit1f74ea22abc336e3a2c4e408d8522ad90464585b (patch)
tree4af3d6891dc0f744b4206939cc4d8c7b3d7e5dc6 /platform-logic/installer/pom.xml
parent45868047871fb6234b9c79568fe65d506128458e (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: Icb1178b5c254ce188345cf1ee5381b442c8e668d Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
Diffstat (limited to 'platform-logic/installer/pom.xml')
-rw-r--r--platform-logic/installer/pom.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/platform-logic/installer/pom.xml b/platform-logic/installer/pom.xml
index 65d850c..95db981 100644
--- a/platform-logic/installer/pom.xml
+++ b/platform-logic/installer/pom.xml
@@ -46,6 +46,7 @@
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
+ <version>2.6</version>
<executions>
<execution>
<id>create-zip</id>
@@ -58,6 +59,7 @@
<descriptors>
<descriptor>src/assembly/assemble_zip.xml</descriptor>
</descriptors>
+ <appendAssemblyId>false</appendAssemblyId>
</configuration>
</execution>