Release appc
[appc.git] / appc-outbound / appc-network-inventory-client / installer / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
7   Copyright (C) 2017 Amdocs
8   ================================================================================
9   Licensed under the Apache License, Version 2.0 (the "License");
10   you may not use this file except in compliance with the License.
11   You may obtain a copy of the License at
12   
13        http://www.apache.org/licenses/LICENSE-2.0
14   
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20   ============LICENSE_END=========================================================
21   -->
22 <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">
23         <modelVersion>4.0.0</modelVersion>
24     <parent>
25         <groupId>org.onap.appc.parent</groupId>
26         <artifactId>odlparent-lite</artifactId>
27         <version>2.7.2</version>
28         <relativePath/>
29     </parent>
30   <groupId>org.onap.appc</groupId>
31         <name>APPC Network Inventory - Installer</name>
32         <packaging>pom</packaging>
33
34         <properties>
35                 <application.name>appc-network-inventory-client</application.name>
36                 <features.boot>appc-network-inventory-client</features.boot>
37                 <features.repositories>mvn:org.onap.appc/onap-appc-network-inventory-client/${project.version}/xml/features</features.repositories>
38                 <include.transitive.dependencies>false</include.transitive.dependencies>
39         </properties>
40
41         <dependencies>
42                 <dependency>
43                         <groupId>org.onap.appc</groupId>
44                         <artifactId>onap-appc-network-inventory-client</artifactId>
45                         <classifier>features</classifier>
46                         <version>${project.version}</version>
47                         <type>xml</type>
48                         <exclusions>
49                                 <exclusion>
50                                         <groupId>*</groupId>
51                                         <artifactId>*</artifactId>
52                                 </exclusion>
53                         </exclusions>
54                 </dependency>
55                 <dependency>
56                         <groupId>org.onap.appc</groupId>
57                         <artifactId>appc-network-inventory-client-provider</artifactId>
58                         <version>${project.version}</version>
59                 </dependency>
60
61         </dependencies>
62
63         <build>
64                 <plugins>
65                         <plugin>
66                                 <artifactId>maven-assembly-plugin</artifactId>
67                                 <executions>
68                                         <execution>
69                                                 <id>maven-repo-zip</id>
70                                                 <goals>
71                                                         <goal>single</goal>
72                                                 </goals>
73                                                 <phase>package</phase>
74                                                 <configuration>
75                                                         <appendAssemblyId>false</appendAssemblyId>
76                                                         <attach>false</attach>
77                                                         <finalName>stage/${application.name}-${project.version}</finalName>
78                                                         <descriptors>
79                                                                 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
80                                                         </descriptors>
81                                                 </configuration>
82                                         </execution>
83                                         <execution>
84                                                 <id>installer-zip</id>
85                                                 <goals>
86                                                         <goal>single</goal>
87                                                 </goals>
88                                                 <phase>package</phase>
89                                                 <configuration>
90                                                         <appendAssemblyId>false</appendAssemblyId>
91                                                         <attach>true</attach>
92                                                         <finalName>${application.name}-${project.version}</finalName>
93                                                         <descriptors>
94                                                                 <descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
95                                                         </descriptors>
96                                                 </configuration>
97                                         </execution>
98                                 </executions>
99                         </plugin>
100                         <plugin>
101                                 <groupId>org.apache.maven.plugins</groupId>
102                                 <artifactId>maven-dependency-plugin</artifactId>
103                                 <executions>
104                                         <execution>
105                                                 <id>copy-dependencies</id>
106                                                 <goals>
107                                                         <goal>copy-dependencies</goal>
108                                                 </goals>
109                                                 <phase>prepare-package</phase>
110                                                 <configuration>
111                                                         <transitive>false</transitive>
112                                                         <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
113                                                         <overWriteReleases>false</overWriteReleases>
114                                                         <overWriteSnapshots>true</overWriteSnapshots>
115                                                         <overWriteIfNewer>true</overWriteIfNewer>
116                                                         <useRepositoryLayout>true</useRepositoryLayout>
117                                                         <addParentPoms>false</addParentPoms>
118                                                         <copyPom>false</copyPom>
119                                                         <excludeGroupIds>org.opendaylight</excludeGroupIds>
120                                                         <scope>provided</scope>
121                                                 </configuration>
122                                         </execution>
123                                 </executions>
124                         </plugin>
125                         <plugin>
126                                 <artifactId>maven-resources-plugin</artifactId>
127                                 <executions>
128                                         <execution>
129                                                 <id>copy-version</id>
130                                                 <goals>
131                                                         <goal>copy-resources</goal>
132                                                 </goals>
133                                                 <!-- here the phase you need -->
134                                                 <phase>validate</phase>
135                                                 <configuration>
136                                                         <outputDirectory>${basedir}/target/stage</outputDirectory>
137                                                         <resources>
138                                                                 <resource>
139                                                                         <directory>src/main/resources/scripts</directory>
140                                                                         <includes>
141                                                                                 <include>install-feature.sh</include>
142                                                                         </includes>
143                                                                         <filtering>true</filtering>
144                                                                 </resource>
145                                                         </resources>
146                                                 </configuration>
147                                         </execution>
148                                 </executions>
149                         </plugin>
150                 </plugins>
151         </build>
152
153         <artifactId>appc-network-inventory-client-installer</artifactId>
154         <version>1.7.2</version>
155 </project>