diff options
author | liamfallon <liam.fallon@est.tech> | 2019-04-30 13:31:03 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2019-04-30 13:31:03 +0000 |
commit | afcb924513a49d3451b8ba42d6ff7ff095990dc5 (patch) | |
tree | ba8950d6811db37ee64259f7b868f9fb695ae83e /models-sim/models-sim-dmaap/pom.xml | |
parent | df51f5f057f813a1f6873c3208bf002e56e22d86 (diff) |
Docker container for DMaaP Simulator
THis review brings in a Docker container for the DMaaP
simulator for CSIT testing. This container should NOT
be submitted to the ONAP nexus as it is only for testing.
Issue-ID: POLICY-1643
Change-Id: I0e2147da9b7c0a85db68044439d48378d3a3e5b5
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'models-sim/models-sim-dmaap/pom.xml')
-rw-r--r-- | models-sim/models-sim-dmaap/pom.xml | 26 |
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> |