blob: 5545c9a0a5af166474f07a040b719eb99cbcc3bc [file] [log] [blame]
Skip Wonnell1ec4bf92017-08-15 20:42:44 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06004 ONAP : APPC
Skip Wonnell1ec4bf92017-08-15 20:42:44 -05005 ================================================================================
John McClungcd5f4f62018-06-13 14:03:54 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnell1ec4bf92017-08-15 20:42:44 -05007 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=========================================================
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050021 -->
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>
Patrick Bradyb49dd122018-08-10 15:30:58 -070025 <groupId>org.onap.appc.parent</groupId>
26 <artifactId>odlparent-lite</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070027 <version>1.4.0-SNAPSHOT</version>
Patrick Bradyb49dd122018-08-10 15:30:58 -070028 <relativePath />
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050029 </parent>
30
Patrick Bradyb49dd122018-08-10 15:30:58 -070031 <groupId>org.onap.appc</groupId>
32
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050033 <artifactId>appc-config-adaptor-installer</artifactId>
Patrick Bradyb22ccc62018-10-01 11:32:22 -070034 <version>1.4.0-SNAPSHOT</version>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050035 <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>
Patrick Bradyb49dd122018-08-10 15:30:58 -070040 <features.repositories>mvn:org.onap.appc/onap-appc-config-adaptor/${project.version}/xml/features</features.repositories>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050041 <include.transitive.dependencies>false</include.transitive.dependencies>
42 </properties>
43 <dependencies>
44 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080045 <groupId>org.onap.appc</groupId>
Patrick Bradyb49dd122018-08-10 15:30:58 -070046 <artifactId>onap-appc-config-adaptor</artifactId>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050047 <classifier>features</classifier>
Patrick Bradyb49dd122018-08-10 15:30:58 -070048 <version>${project.version}</version>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050049 <type>xml</type>
50 <exclusions>
51 <exclusion>
52 <groupId>*</groupId>
53 <artifactId>*</artifactId>
54 </exclusion>
55 </exclusions>
56 </dependency>
57 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080058 <groupId>org.onap.appc</groupId>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050059 <artifactId>appc-config-adaptor-provider</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070060 <version>1.4.0-SNAPSHOT</version>
Skip Wonnell1ec4bf92017-08-15 20:42:44 -050061 </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>