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