diff options
Diffstat (limited to 'vnfapi/installer/pom.xml')
-rwxr-xr-x | vnfapi/installer/pom.xml | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/vnfapi/installer/pom.xml b/vnfapi/installer/pom.xml index a3fc6350..2257be33 100755 --- a/vnfapi/installer/pom.xml +++ b/vnfapi/installer/pom.xml @@ -1,31 +1,36 @@ <?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> + <parent> - <artifactId>vnfapi</artifactId> - <groupId>org.onap.sdnc.northbound</groupId> - <version>1.3.0-SNAPSHOT</version> + <groupId>org.onap.ccsdk.parent</groupId> + <artifactId>odlparent-lite</artifactId> + <version>1.0.1-SNAPSHOT</version> + <relativePath /> </parent> + + <groupId>org.onap.sdnc.northbound</groupId> <artifactId>vnfapi-installer</artifactId> - <name>VNF API - Karaf Installer</name> + <version>1.3.1-SNAPSHOT</version> <packaging>pom</packaging> + <name>sdnc-northbound :: vnfapi :: ${project.artifactId}</name> + <properties> <application.name>sdnc-vnfapi</application.name> - <features.boot>sdnc-vnfapi</features.boot> - <features.repositories>mvn:org.onap.sdnc.northbound/vnfapi-features/${project.version}/xml/features</features.repositories> + <features.boot>${application.name}</features.boot> + <features.repositories>mvn:org.onap.sdnc.northbound/${application.name}/${project.version}/xml/features</features.repositories> <include.transitive.dependencies>false</include.transitive.dependencies> </properties> <dependencies> <dependency> - <groupId>org.onap.sdnc.northbound</groupId> - <artifactId>vnfapi-features</artifactId> + <groupId>${project.groupId}</groupId> + <artifactId>${application.name}</artifactId> <version>${project.version}</version> - <classifier>features</classifier> <type>xml</type> + <classifier>features</classifier> <exclusions> <exclusion> <groupId>*</groupId> @@ -35,7 +40,7 @@ </dependency> <dependency> - <groupId>org.onap.sdnc.northbound</groupId> + <groupId>${project.groupId}</groupId> <artifactId>vnfapi-provider</artifactId> <version>${project.version}</version> </dependency> @@ -100,8 +105,7 @@ <useRepositoryLayout>true</useRepositoryLayout> <addParentPoms>false</addParentPoms> <copyPom>false</copyPom> - <includeGroupIds>org.onap.sdnc</includeGroupIds> - <excludeArtifactIds>sli-common,sli-provider,dblib-common,dblib-provider</excludeArtifactIds> + <includeGroupIds>org.onap.sdnc.northbound</includeGroupIds> <scope>provided</scope> </configuration> </execution> @@ -136,5 +140,4 @@ </plugins> </build> - </project> |