Update license header in appc xml files
[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"
23         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24         <modelVersion>4.0.0</modelVersion>
25         <parent>
26                 <artifactId>appc-network-inventory-client</artifactId>
27                 <groupId>org.onap.appc</groupId>
28                 <version>1.4.0-SNAPSHOT</version>
29         </parent>
30         <name>APPC Network Inventory - Installer</name>
31         <packaging>pom</packaging>
32
33         <properties>
34                 <application.name>appc-network-inventory-client</application.name>
35                 <features.boot>appc-network-inventory-client</features.boot>
36                 <features.repositories>mvn:org.onap.appc/appc-network-inventory-client-features/${project.version}/xml/features</features.repositories>
37                 <include.transitive.dependencies>false</include.transitive.dependencies>
38         </properties>
39
40         <dependencies>
41                 <dependency>
42                         <groupId>org.onap.appc</groupId>
43                         <artifactId>appc-network-inventory-client-features</artifactId>
44                         <classifier>features</classifier>
45                         <type>xml</type>
46                         <exclusions>
47                                 <exclusion>
48                                         <groupId>*</groupId>
49                                         <artifactId>*</artifactId>
50                                 </exclusion>
51                         </exclusions>
52                 </dependency>
53                 <dependency>
54                         <groupId>org.onap.appc</groupId>
55                         <artifactId>appc-network-inventory-client-provider</artifactId>
56                 </dependency>
57
58         </dependencies>
59
60         <build>
61                 <plugins>
62                         <plugin>
63                                 <artifactId>maven-assembly-plugin</artifactId>
64                                 <executions>
65                                         <execution>
66                                                 <id>maven-repo-zip</id>
67                                                 <goals>
68                                                         <goal>single</goal>
69                                                 </goals>
70                                                 <phase>package</phase>
71                                                 <configuration>
72                                                         <appendAssemblyId>false</appendAssemblyId>
73                                                         <attach>false</attach>
74                                                         <finalName>stage/${application.name}-${project.version}</finalName>
75                                                         <descriptors>
76                                                                 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
77                                                         </descriptors>
78                                                 </configuration>
79                                         </execution>
80                                         <execution>
81                                                 <id>installer-zip</id>
82                                                 <goals>
83                                                         <goal>single</goal>
84                                                 </goals>
85                                                 <phase>package</phase>
86                                                 <configuration>
87                                                         <appendAssemblyId>false</appendAssemblyId>
88                                                         <attach>true</attach>
89                                                         <finalName>${application.name}-${project.version}</finalName>
90                                                         <descriptors>
91                                                                 <descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
92                                                         </descriptors>
93                                                 </configuration>
94                                         </execution>
95                                 </executions>
96                         </plugin>
97                         <plugin>
98                                 <groupId>org.apache.maven.plugins</groupId>
99                                 <artifactId>maven-dependency-plugin</artifactId>
100                                 <executions>
101                                         <execution>
102                                                 <id>copy-dependencies</id>
103                                                 <goals>
104                                                         <goal>copy-dependencies</goal>
105                                                 </goals>
106                                                 <phase>prepare-package</phase>
107                                                 <configuration>
108                                                         <transitive>false</transitive>
109                                                         <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
110                                                         <overWriteReleases>false</overWriteReleases>
111                                                         <overWriteSnapshots>true</overWriteSnapshots>
112                                                         <overWriteIfNewer>true</overWriteIfNewer>
113                                                         <useRepositoryLayout>true</useRepositoryLayout>
114                                                         <addParentPoms>false</addParentPoms>
115                                                         <copyPom>false</copyPom>
116                                                         <excludeGroupIds>org.opendaylight</excludeGroupIds>
117                                                         <scope>provided</scope>
118                                                 </configuration>
119                                         </execution>
120                                 </executions>
121                         </plugin>
122                         <plugin>
123                                 <artifactId>maven-resources-plugin</artifactId>
124                                 <executions>
125                                         <execution>
126                                                 <id>copy-version</id>
127                                                 <goals>
128                                                         <goal>copy-resources</goal>
129                                                 </goals>
130                                                 <!-- here the phase you need -->
131                                                 <phase>validate</phase>
132                                                 <configuration>
133                                                         <outputDirectory>${basedir}/target/stage</outputDirectory>
134                                                         <resources>
135                                                                 <resource>
136                                                                         <directory>src/main/resources/scripts</directory>
137                                                                         <includes>
138                                                                                 <include>install-feature.sh</include>
139                                                                         </includes>
140                                                                         <filtering>true</filtering>
141                                                                 </resource>
142                                                         </resources>
143                                                 </configuration>
144                                         </execution>
145                                 </executions>
146                         </plugin>
147                 </plugins>
148         </build>
149
150         <artifactId>appc-network-inventory-client-installer</artifactId>
151 </project>