summaryrefslogtreecommitdiffstats
path: root/nokiav2/driverwar/pom.xml
diff options
context:
space:
mode:
authorDenes Nemeth <denes.nemeth@nokia.com>2018-03-01 10:10:24 +0100
committerDenes Nemeth <denes.nemeth@nokia.com>2018-03-01 10:10:24 +0100
commit77b67133577c4decf7c4826edcc04edcde135df6 (patch)
tree212b7eb903acfc76112722638b3cd5bfe584484b /nokiav2/driverwar/pom.xml
parent67f1d734060a0a4ac810c159b86d3e18fe1fb842 (diff)
Fix artifact deployment to nexus
Change-Id: Ib63a97cd93989ec1e94e968f4d044f4499fc8f4c Signed-off-by: Denes Nemeth <denes.nemeth@nokia.com> Issue-ID: VFC-728
Diffstat (limited to 'nokiav2/driverwar/pom.xml')
-rw-r--r--nokiav2/driverwar/pom.xml25
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>