diff options
author | Jorge Hernandez <jh1730@att.com> | 2018-07-13 14:01:05 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-07-13 14:01:05 +0000 |
commit | 92eb2fc652a408819b27a3209bedda23db96bda4 (patch) | |
tree | 978d67840ccd01bc7475761f592224292ead547e /client/client-monitoring/pom.xml | |
parent | 2e32896a4e98fe2047b2e6356d4e9d7dbd3a0252 (diff) | |
parent | c6d74e6cee17405b9d26506b06259ccb2f38c737 (diff) |
Merge "Adding client deployment module to apex-pdp"
Diffstat (limited to 'client/client-monitoring/pom.xml')
-rw-r--r-- | client/client-monitoring/pom.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/client/client-monitoring/pom.xml b/client/client-monitoring/pom.xml index d94a0ea68..abac35db2 100644 --- a/client/client-monitoring/pom.xml +++ b/client/client-monitoring/pom.xml @@ -37,6 +37,14 @@ <version>${project.version}</version> </dependency> <dependency> + <groupId>org.onap.policy.apex-pdp.client</groupId> + <artifactId>client-common</artifactId> + <version>${project.version}</version> + <classifier>resources</classifier> + <type>zip</type> + <scope>provided</scope> + </dependency> + <dependency> <groupId>org.glassfish.jersey.containers</groupId> <artifactId>jersey-container-grizzly2-http</artifactId> <version>${version.jersey}</version> @@ -64,6 +72,25 @@ <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <executions> + <execution> + <id>unpack-client-monitoring-shared-resources</id> + <goals> + <goal>unpack-dependencies</goal> + </goals> + <phase>generate-resources</phase> + <configuration> + <outputDirectory>${project.build.directory}/${project.artifactId}-${project.version}</outputDirectory> + <includeArtifacIds>client-common</includeArtifacIds> + <includeGroupIds>${project.groupId}</includeGroupIds> + <excludeTransitive>true</excludeTransitive> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> |