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