aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dcae-controller-core/dcae-controller-core-utils/pom.xml25
1 files changed, 24 insertions, 1 deletions
diff --git a/dcae-controller-core/dcae-controller-core-utils/pom.xml b/dcae-controller-core/dcae-controller-core-utils/pom.xml
index 24ddeb9..3878e26 100644
--- a/dcae-controller-core/dcae-controller-core-utils/pom.xml
+++ b/dcae-controller-core/dcae-controller-core-utils/pom.xml
@@ -101,6 +101,29 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>1.10</version>
+ <executions>
+ <execution>
+ <id>attach-artifacts</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attach-artifact</goal>
+ </goals>
+ <configuration>
+ <artifacts>
+ <artifact>
+ <file>target/${project.artifactId}-${project.version}-runtime.zip</file>
+ <type>zip</type>
+ <classifier>runtime</classifier>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
@@ -123,4 +146,4 @@
<version>0.1.0-SNAPSHOT</version>
<relativePath>../../../dcae-org.openecomp.ncomp.maven/ncomp-maven-base</relativePath>
</parent>
-</project> \ No newline at end of file
+</project>