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