diff options
Diffstat (limited to 'oparent/pom.xml')
-rwxr-xr-x | oparent/pom.xml | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/oparent/pom.xml b/oparent/pom.xml index 6ca7c830..b76f1ddc 100755 --- a/oparent/pom.xml +++ b/oparent/pom.xml @@ -71,15 +71,15 @@ <groupId>org.onap.ccsdk.parent</groupId> <artifactId>dependencies-bom</artifactId> <version>2.1.1-SNAPSHOT</version> - <scope>import</scope> <type>pom</type> + <scope>import</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.3.5.RELEASE</version> - <scope>import</scope> <type>pom</type> + <scope>import</scope> </dependency> <dependency> @@ -101,8 +101,6 @@ </dependency> </dependencies> </dependencyManagement> - - <dependencies> <dependency> <groupId>javax.annotation</groupId> @@ -189,12 +187,21 @@ </repository> </repositories> - <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <!-- This version supports the "deployAtEnd" parameter --> + <version>2.8</version> + <configuration> + <skip/> + <deployAtEnd>true</deployAtEnd> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.2.0</version> </plugin> |