a33c72aada4fea2e5a25f67a5a38837e76a63648
[appc.git] / appc-adapters / appc-dmaap-adapter / appc-dmaap-adapter-installer / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017 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   ECOMP is a trademark and service mark of AT&T Intellectual Property.
22   -->
23 <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">
24   <modelVersion>4.0.0</modelVersion>
25   <parent>
26     <artifactId>appc-dmaap-adapter</artifactId>
27     <groupId>org.onap.appc</groupId>
28     <version>1.3.0-SNAPSHOT</version>
29   </parent>
30   <artifactId>appc-dmaap-adapter-installer</artifactId>
31   <name>dMaaP Adapter - Karaf Installer</name>
32   <packaging>pom</packaging>
33
34   <properties>
35     <application.name>appc-dmaap-adapter</application.name>
36     <features.boot>appc-dmaap-adapter</features.boot>
37     <features.repositories>mvn:org.onap.appc/appc-dmaap-adapter-features/${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>appc-dmaap-adapter-features</artifactId>
45       <version>${project.version}</version>
46       <classifier>features</classifier>
47       <type>xml</type>
48       <exclusions>
49         <exclusion>
50           <groupId>*</groupId>
51           <artifactId>*</artifactId>
52         </exclusion>
53       </exclusions>
54     </dependency>
55
56     <dependency>
57       <groupId>org.onap.appc</groupId>
58       <artifactId>appc-dmaap-adapter-bundle</artifactId>
59       <version>${project.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>org.onap.appc</groupId>
63       <artifactId>appc-message-adapter-api</artifactId>
64       <version>${project.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>org.onap.appc</groupId>
68       <artifactId>appc-message-adapter-factory</artifactId>
69       <version>${project.version}</version>
70     </dependency>
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
161     </plugins>
162   </build>
163
164 </project>