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