aboutsummaryrefslogtreecommitdiffstats
path: root/models-sim/models-sim-dmaap/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'models-sim/models-sim-dmaap/pom.xml')
-rw-r--r--models-sim/models-sim-dmaap/pom.xml26
1 files changed, 24 insertions, 2 deletions
diff --git a/models-sim/models-sim-dmaap/pom.xml b/models-sim/models-sim-dmaap/pom.xml
index b21926b5c..9bfa6bec3 100644
--- a/models-sim/models-sim-dmaap/pom.xml
+++ b/models-sim/models-sim-dmaap/pom.xml
@@ -45,7 +45,6 @@
<dependency>
<groupId>org.onap.policy.common</groupId>
<artifactId>utils</artifactId>
- <version>${policy.common.version}</version>
</dependency>
<dependency>
<groupId>org.onap.policy.common</groupId>
@@ -61,7 +60,7 @@
<build>
<resources>
- <!-- Output the version of the pap service -->
+ <!-- Output the version of the DMaaP simulator service -->
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
@@ -77,5 +76,28 @@
</excludes>
</resource>
</resources>
+
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>generate-complete-tar</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <configuration>
+ <descriptors>
+ <descriptor>src/main/package/tarball/assembly.xml</descriptor>
+ </descriptors>
+ <finalName>${project.artifactId}-${project.version}</finalName>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+
</build>
</project>