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