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