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>2.0.0-SNAPSHOT</version>
11 <groupId>org.onap.ccsdk.sli.plugins</groupId>
12 <artifactId>properties-node-installer</artifactId>
13 <version>1.0.0-SNAPSHOT</version>
14 <packaging>pom</packaging>
16 <name>ccsdk-sli-plugins :: properties-node :: ${project.artifactId}</name>
19 <application.name>ccsdk-properties-node</application.name>
20 <features.boot>${application.name}</features.boot>
21 <features.repositories>mvn:org.onap.ccsdk.sli.plugins/${features.boot}/${project.version}/xml/features</features.repositories>
22 <include.transitive.dependencies>false</include.transitive.dependencies>
28 <groupId>org.onap.ccsdk.sli.plugins</groupId>
29 <artifactId>properties-node-provider</artifactId>
30 <version>${project.version}</version>
38 <artifactId>maven-assembly-plugin</artifactId>
39 <version>2.6</version>
42 <id>maven-repo-zip</id>
46 <phase>package</phase>
49 <finalName>stage/${application.name}-${project.version}</finalName>
51 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
53 <appendAssemblyId>true</appendAssemblyId>
57 <id>installer-zip</id>
61 <phase>package</phase>
64 <finalName>${application.name}-${project.version}-installer</finalName>
66 <descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
68 <appendAssemblyId>false</appendAssemblyId>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-dependency-plugin</artifactId>
78 <id>copy-dependencies</id>
80 <goal>copy-dependencies</goal>
82 <phase>prepare-package</phase>
84 <transitive>false</transitive>
85 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
86 <overWriteReleases>false</overWriteReleases>
87 <overWriteSnapshots>true</overWriteSnapshots>
88 <overWriteIfNewer>true</overWriteIfNewer>
89 <useRepositoryLayout>true</useRepositoryLayout>
90 <addParentPoms>false</addParentPoms>
91 <copyPom>false</copyPom>
92 <includeGroupIds>org.onap.ccsdk.sli.plugins</includeGroupIds>
93 <scope>provided</scope>
99 <artifactId>maven-resources-plugin</artifactId>
100 <version>2.6</version>
103 <id>copy-version</id>
105 <goal>copy-resources</goal>
106 </goals><!-- here the phase you need -->
107 <phase>validate</phase>
109 <outputDirectory>${basedir}/target/stage</outputDirectory>
112 <directory>src/main/resources/scripts</directory>
114 <include>install-feature.sh</include>
116 <filtering>true</filtering>