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