1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
8 <version>1.4.3</version>
12 <groupId>org.o-ran-sc.nonrtric.sdnc-a1.northbound</groupId>
13 <artifactId>sdnc-a1-northbound-features-installer</artifactId>
14 <version>1.7.3-SNAPSHOT</version>
15 <packaging>pom</packaging>
17 <name>sdnc-a1-northbound :: features :: ${project.artifactId}</name>
20 <application.name>sdnc-a1-northbound-all</application.name>
21 <features.boot>${application.name}</features.boot>
22 <features.repositories>mvn:org.o-ran-sc.nonrtric.sdnc-a1.northbound/${features.boot}/${project.version}/xml/features</features.repositories>
23 <include.transitive.dependencies>false</include.transitive.dependencies>
29 <groupId>org.o-ran-sc.nonrtric.sdnc-a1.northbound</groupId>
30 <artifactId>${application.name}</artifactId>
31 <version>${project.version}</version>
33 <classifier>features</classifier>
37 <artifactId>*</artifactId>
48 <artifactId>maven-assembly-plugin</artifactId>
51 <id>maven-repo-zip</id>
55 <phase>package</phase>
58 <finalName>stage/${application.name}-${project.version}</finalName>
60 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
62 <appendAssemblyId>true</appendAssemblyId>
66 <id>installer-zip</id>
70 <phase>package</phase>
73 <finalName>${application.name}-${project.version}-installer</finalName>
75 <descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
77 <appendAssemblyId>false</appendAssemblyId>
83 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-dependency-plugin</artifactId>
87 <id>copy-dependencies</id>
89 <goal>copy-dependencies</goal>
91 <phase>prepare-package</phase>
93 <transitive>false</transitive>
94 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
95 <overWriteReleases>false</overWriteReleases>
96 <overWriteSnapshots>true</overWriteSnapshots>
97 <overWriteIfNewer>true</overWriteIfNewer>
98 <useRepositoryLayout>true</useRepositoryLayout>
99 <addParentPoms>false</addParentPoms>
100 <copyPom>false</copyPom>
101 <includeGroupIds>org.o-ran-sc.nonrtric.sdnc-a1.northbound</includeGroupIds>
102 <scope>provided</scope>
108 <artifactId>maven-resources-plugin</artifactId>
109 <version>2.6</version>
112 <id>copy-version</id>
114 <goal>copy-resources</goal>
115 </goals><!-- here the phase you need -->
116 <phase>validate</phase>
118 <outputDirectory>${basedir}/target/stage</outputDirectory>
121 <directory>src/main/resources/scripts</directory>
123 <include>install-feature.sh</include>
125 <filtering>true</filtering>