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