diff options
author | Przemyslaw Wasala <przemyslaw.wasala@nokia.com> | 2018-08-02 06:26:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-08-02 06:26:50 +0000 |
commit | e93ba2b32d71844a7075a021631f40a0cc4888df (patch) | |
tree | 7b9e947cc5fe65634a3a0bc77e71a39c36e2be33 /pom.xml | |
parent | 32aeb329986b3d6b9671c0a9e555cbff43964b3a (diff) | |
parent | 94eeb738945da9bda072bd65d59a18a5183d12c6 (diff) |
Merge "Dockerize DCAE APP simulator"
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 44 |
1 files changed, 37 insertions, 7 deletions
@@ -70,7 +70,7 @@ <skipAnalysis>true</skipAnalysis> <!-- Docker --> - <skipDocker>true</skipDocker> + <skipDocker>true</skipDocker> <!-- TODO: unskip docker --> <docker-image.name>ves-hv-collector/${project.artifactId}</docker-image.name> <docker-image.namespace>onap</docker-image.namespace> </properties> @@ -237,11 +237,6 @@ </dependency> </dependencies> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-dependency-plugin</artifactId> - <version>3.1.1</version> - </plugin> </plugins> </pluginManagement> <extensions> @@ -412,7 +407,37 @@ </images> </configuration> </plugin> - + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <version>3.1.1</version> + <executions> + <execution> + <id>copy-internal-deps</id> + <phase>package</phase> + <goals> + <goal>copy-dependencies</goal> + </goals> + <configuration> + <outputDirectory>${project.build.directory}/libs/internal</outputDirectory> + <includeGroupIds>${project.parent.groupId}</includeGroupIds> + <includeScope>runtime</includeScope> + </configuration> + </execution> + <execution> + <id>copy-external-deps</id> + <phase>package</phase> + <goals> + <goal>copy-dependencies</goal> + </goals> + <configuration> + <outputDirectory>${project.build.directory}/libs/external</outputDirectory> + <excludeGroupIds>${project.parent.groupId}</excludeGroupIds> + <includeScope>runtime</includeScope> + </configuration> + </execution> + </executions> + </plugin> </plugins> </pluginManagement> </build> @@ -533,6 +558,11 @@ <version>${protobuf.version}</version> </dependency> <dependency> + <groupId>com.google.protobuf</groupId> + <artifactId>protobuf-java-util</artifactId> + <version>${protobuf.version}</version> + </dependency> + <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.4</version> |