diff options
-rw-r--r-- | pom.xml | 63 |
1 files changed, 39 insertions, 24 deletions
@@ -25,10 +25,10 @@ <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.onap.so</groupId> - <artifactId>adapters</artifactId> + <artifactId>so</artifactId> <version>1.8.0-SNAPSHOT</version> </parent> - <groupId>org.onap.so.adapters</groupId> + <!-- <groupId>org.onap.so.adapters</groupId --> <artifactId>so-cnf-adapter</artifactId> <packaging>jar</packaging> <name>so-cnf-adapter</name> @@ -136,25 +136,16 @@ </dependencies> </plugin> <plugin> - <groupId>com.spotify</groupId> - <artifactId>dockerfile-maven-plugin</artifactId> - <version>1.4.3</version> - <dependencies> - <dependency> - <groupId>javax.activation</groupId> - <artifactId>activation</artifactId> - <version>1.1.1</version> - </dependency> - </dependencies> - <executions> - <execution> - <id>docker-build</id> - <goals> - <goal>build</goal> - </goals> - </execution> - </executions> - <configuration> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <executions> + <execution> + <id>docker-build</id> + <phase>install</phase> + <goals> + <goal>exec</goal> + </goals> + <configuration> <dockerFile>Dockerfile</dockerFile> <executable>docker</executable> <workingDirectory>${project.basedir}</workingDirectory> @@ -168,10 +159,10 @@ <JAR_FILE>${project.artifactId}-${project.version}.jar</JAR_FILE> <ARTIFACT_ID>${project.artifactId}</ARTIFACT_ID> </buildArgs> - <repository>${project.artifactId}</repository> - <tag>${project.version}</tag> </configuration> - </plugin> + </execution> + </executions> + </plugin> </plugins> </build> <dependencies> @@ -214,6 +205,30 @@ <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.cloud</groupId> + <artifactId>spring-cloud-contract-wiremock</artifactId> + <version>1.2.4.RELEASE</version> + </dependency> + <dependency> + <groupId>org.onap.so</groupId> + <artifactId>aai-client</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>com.sun.xml.ws</groupId> + <artifactId>jaxws-ri</artifactId> + <version>2.3.0</version> + <type>pom</type> + </dependency> </dependencies> </project> |