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