diff options
-rw-r--r-- | pom.xml | 9 | ||||
-rw-r--r-- | prh-app-server/pom.xml | 3 |
2 files changed, 11 insertions, 1 deletions
@@ -308,6 +308,15 @@ <artifactId>maven-surefire-report-plugin</artifactId> <version>2.21.0</version> </plugin> + + <plugin> + <groupId>com.spotify</groupId> + <artifactId>docker-maven-plugin</artifactId> + <version>0.4.11</version> + <configuration> + <skipDockerBuild>true</skipDockerBuild> + </configuration> + </plugin> </plugins> </pluginManagement> <plugins> diff --git a/prh-app-server/pom.xml b/prh-app-server/pom.xml index 44ebca2f..a2d0aff5 100644 --- a/prh-app-server/pom.xml +++ b/prh-app-server/pom.xml @@ -70,6 +70,7 @@ </execution> </executions> <configuration> + <skipDockerBuild>false</skipDockerBuild> <imageName> ${onap.nexus.dockerregistry.daily}/onap/${project.groupId}.${project.artifactId} </imageName> @@ -205,4 +206,4 @@ </dependency> </dependencies> </dependencyManagement> -</project>
\ No newline at end of file +</project> |