Roll to initial Dublin snapshot
[ccsdk/sli/plugins.git] / template-node / installer / pom.xml
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>
4
5     <parent>
6         <groupId>org.onap.ccsdk.parent</groupId>
7         <artifactId>odlparent-lite</artifactId>
8         <version>1.2.0-SNAPSHOT</version>
9     </parent>
10
11     <groupId>org.onap.ccsdk.sli.plugins</groupId>
12     <artifactId>template-node-installer</artifactId>
13     <version>0.4.0-SNAPSHOT</version>
14     <packaging>pom</packaging>
15
16     <properties>
17         <application.name>ccsdk-template-node</application.name>
18         <features.boot>${application.name}</features.boot>
19         <features.repositories>mvn:org.onap.ccsdk.sli.plugins/${features.boot}/${project.version}/xml/features</features.repositories>
20         <include.transitive.dependencies>false</include.transitive.dependencies>
21     </properties>
22
23     <dependencies>
24         <dependency>
25             <groupId>org.onap.ccsdk.sli.plugins</groupId>
26             <artifactId>${application.name}</artifactId>
27             <version>${project.version}</version>
28             <type>xml</type>
29             <classifier>features</classifier>
30             <exclusions>
31                 <exclusion>
32                     <groupId>*</groupId>
33                     <artifactId>*</artifactId>
34                 </exclusion>
35             </exclusions>
36         </dependency>
37         <dependency>
38             <groupId>org.onap.ccsdk.sli.plugins</groupId>
39             <artifactId>template-node-provider</artifactId>
40             <version>${project.version}</version>
41         </dependency>
42     </dependencies>
43
44     <build>
45         <plugins>
46             <plugin>
47                 <artifactId>maven-assembly-plugin</artifactId>
48                 <version>2.6</version>
49                 <executions>
50                     <execution>
51                         <id>maven-repo-zip</id>
52                         <goals>
53                             <goal>single</goal>
54                         </goals>
55                         <phase>package</phase>
56                         <configuration>
57                             <attach>false</attach>
58                             <finalName>stage/${application.name}-${project.version}</finalName>
59                             <descriptors>
60                                 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
61                             </descriptors>
62                             <appendAssemblyId>false</appendAssemblyId>
63                         </configuration>
64                     </execution>
65                     <execution>
66                         <id>installer-zip</id>
67                         <goals>
68                             <goal>single</goal>
69                         </goals>
70                         <phase>package</phase>
71                         <configuration>
72                             <attach>true</attach>
73                             <finalName>${application.name}-${project.version}-installer</finalName>
74                             <descriptors>
75                                 <descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
76                             </descriptors>
77                             <appendAssemblyId>false</appendAssemblyId>
78                         </configuration>
79                     </execution>
80                 </executions>
81             </plugin>
82             <plugin>
83                 <groupId>org.apache.maven.plugins</groupId>
84                 <artifactId>maven-dependency-plugin</artifactId>
85                 <executions>
86                     <execution>
87                         <id>copy-dependencies</id>
88                         <goals>
89                             <goal>copy-dependencies</goal>
90                         </goals>
91                         <phase>prepare-package</phase>
92                         <configuration>
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.onap.ccsdk.sli.plugins,org.apache.velocity</includeGroupIds>
102                             <scope>provided</scope>
103                         </configuration>
104                     </execution>
105                 </executions>
106             </plugin>
107             <plugin>
108                 <artifactId>maven-resources-plugin</artifactId>
109                 <version>2.6</version>
110                 <executions>
111                     <execution>
112                         <id>copy-version</id>
113                         <goals>
114                             <goal>copy-resources</goal>
115                         </goals><!-- here the phase you need -->
116                         <phase>validate</phase>
117                         <configuration>
118                             <outputDirectory>${basedir}/target/stage</outputDirectory>
119                             <resources>
120                                 <resource>
121                                     <directory>src/main/resources/scripts</directory>
122                                     <includes>
123                                         <include>install-feature.sh</include>
124                                     </includes>
125                                     <filtering>true</filtering>
126                                 </resource>
127                             </resources>
128                         </configuration>
129                     </execution>
130
131                 </executions>
132             </plugin>
133
134         </plugins>
135     </build>
136 </project>