diff options
author | Yan Yang <yangyanyj@chinamobile.com> | 2018-03-01 09:24:43 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-01 09:24:43 +0000 |
commit | 4d24e40338421555cad5cd5f9691894a1eb15843 (patch) | |
tree | f1a090b0d6596248575d94ca594ae6ad2b21716a /nokiav2/driverwar/pom.xml | |
parent | 7346613b8d20cf4563e5f582e2a5963f1529166e (diff) | |
parent | 77b67133577c4decf7c4826edcc04edcde135df6 (diff) |
Merge "Fix artifact deployment to nexus"
Diffstat (limited to 'nokiav2/driverwar/pom.xml')
-rw-r--r-- | nokiav2/driverwar/pom.xml | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/nokiav2/driverwar/pom.xml b/nokiav2/driverwar/pom.xml index cb434678..a9a5c13c 100644 --- a/nokiav2/driverwar/pom.xml +++ b/nokiav2/driverwar/pom.xml @@ -23,11 +23,9 @@ <name>vfc/nfvo/driver/vnfm/svnfm/nokiav2/driverwar</name> <description>svnfm vnfm driver</description> <parent> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-parent</artifactId> - <version>1.5.9.RELEASE</version> - <relativePath/> - <!-- lookup parent from repository --> + <groupId>org.onap.vfc.nfvo.driver.vnfm.svnfm.nokiav2</groupId> + <artifactId>vfc-nfvo-driver-vnfm-svnfm-nokiav2</artifactId> + <version>1.1.0-SNAPSHOT</version> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> @@ -43,15 +41,28 @@ <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> - <version>1.5.9.RELEASE</version> + <version>1.5.10.RELEASE</version> </dependency> </dependencies> <build> <plugins> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-war-plugin</artifactId> + <configuration> + <failOnMissingWebXml>false</failOnMissingWebXml> + <archive> + <manifest> + <mainClass>org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.NokiaSvnfmApplication</mainClass> + <addDefaultImplementationEntries>true</addDefaultImplementationEntries> + </manifest> + </archive> + </configuration> + </plugin> + <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> - <version>1.5.7.RELEASE</version> + <version>1.5.10.RELEASE</version> <configuration> <mainClass>org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.NokiaSvnfmApplication</mainClass> <layout>ZIP</layout> |