Release sdnc/northbound
[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>2.1.7</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.sdnc.northbound</groupId>
13     <artifactId>generic-resource-api-installer</artifactId>
14     <version>2.1.5</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     </dependencies>
49
50     <build>
51         <plugins>
52             <plugin>
53                 <artifactId>maven-assembly-plugin</artifactId>
54                 <version>2.6</version>
55                 <executions>
56                     <execution>
57                         <id>maven-repo-zip</id>
58                         <goals>
59                             <goal>single</goal>
60                         </goals>
61                         <phase>package</phase>
62                         <configuration>
63                             <attach>true</attach>
64                             <finalName>stage/${application.name}-${project.version}</finalName>
65                             <descriptors>
66                                 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
67                             </descriptors>
68                         </configuration>
69                     </execution>
70                     <execution>
71                         <id>installer-zip</id>
72                         <goals>
73                             <goal>single</goal>
74                         </goals>
75                         <phase>package</phase>
76                         <configuration>
77                             <attach>true</attach>
78                             <finalName>${application.name}-${project.version}-installer</finalName>
79                             <descriptors>
80                                 <descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
81                             </descriptors>
82                             <appendAssemblyId>false</appendAssemblyId>
83                         </configuration>
84                     </execution>
85                 </executions>
86             </plugin>
87             <plugin>
88                 <groupId>org.apache.maven.plugins</groupId>
89                 <artifactId>maven-dependency-plugin</artifactId>
90                 <executions>
91                     <execution>
92                         <id>copy-dependencies</id>
93                         <goals>
94                             <goal>copy-dependencies</goal>
95                         </goals>
96                         <phase>prepare-package</phase>
97                         <configuration>
98                             <transitive>false</transitive>
99                             <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
100                             <overWriteReleases>false</overWriteReleases>
101                             <overWriteSnapshots>true</overWriteSnapshots>
102                             <overWriteIfNewer>true</overWriteIfNewer>
103                             <useRepositoryLayout>true</useRepositoryLayout>
104                             <addParentPoms>false</addParentPoms>
105                             <copyPom>false</copyPom>
106                             <includeGroupIds>org.onap.sdnc.northbound</includeGroupIds>
107                             <scope>provided</scope>
108                         </configuration>
109                     </execution>
110                 </executions>
111             </plugin>
112             <plugin>
113                 <artifactId>maven-resources-plugin</artifactId>
114                 <version>2.6</version>
115                 <executions>
116                     <execution>
117                         <id>copy-version</id>
118                         <goals>
119                             <goal>copy-resources</goal>
120                         </goals><!-- here the phase you need -->
121                         <phase>validate</phase>
122                         <configuration>
123                             <outputDirectory>${basedir}/target/stage</outputDirectory>
124                             <resources>
125                                 <resource>
126                                     <directory>src/main/resources/scripts</directory>
127                                     <includes>
128                                         <include>install-feature.sh</include>
129                                     </includes>
130                                     <filtering>true</filtering>
131                                 </resource>
132                             </resources>
133                         </configuration>
134                     </execution>
135
136                 </executions>
137             </plugin>
138
139         </plugins>
140     </build>
141 </project>