aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authordglFromAtt <dgl@research.att.com>2018-03-02 21:37:57 -0500
committerdglFromAtt <dgl@research.att.com>2018-03-02 21:38:04 -0500
commit3d2351b25d8f17010f5850c8f91b135fec057f70 (patch)
tree64105a3489b7fc060d763ab022e19ae668149d58 /pom.xml
parent4a7c3578d29aee0cf561608885dd0acbcce5ecff (diff)
corrections for packaging and CSIT
Change-Id: I66f981b92988f820469c272063e7b22661900e8d Signed-off-by: dglFromAtt <dgl@research.att.com> Issue-ID: DMAAP-318
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml23
1 files changed, 20 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 53cbb70..ab6347d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -39,6 +39,22 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <!--Special goal to populate target/libs with dependencies to place in docker image -->
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>install</phase>
+ <goals>
+ <goal>copy-dependencies</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>${project.build.directory}/dependency</outputDirectory>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
<pluginManagement>
@@ -56,9 +72,10 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<versionRange>[2.10,)</versionRange>
- <goals>
- <goal>copy-dependencies</goal>
- </goals>
+ <phase>install</phase>
+ <goals>
+ <goal>copy-dependencies</goal>
+ </goals>
</pluginExecutionFilter>
<action>
<ignore/>