diff options
-rwxr-xr-x | pom.xml | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -78,6 +78,13 @@ <testSourceDirectory>${project.basedir}/src/test/java</testSourceDirectory> <plugins> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> @@ -170,13 +177,13 @@ <goal>exec</goal> </goals> <configuration> - <dockerFile>Dockerfile.so-cnf-adapter</dockerFile> + <dockerFile>Dockerfile</dockerFile> <executable>docker</executable> <workingDirectory>${project.basedir}</workingDirectory> <arguments> <argument>build</argument> <argument>-t</argument> - <argument>onap/so/${project.artifactId}:${project.version}</argument> + <argument>${project.artifactId}:${project.version}</argument> <argument>.</argument> </arguments> <buildArgs> |