blob: a5a459690010b24ea5d12230e8dd3bb8eadbbc8a [file] [log] [blame]
Aijana Schumann4bd84be2020-08-27 09:01:53 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk features
5 ~ ================================================================================
6 ~ Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
7 ~ ================================================================================
8 ~ Licensed under the Apache License, Version 2.0 (the "License");
9 ~ you may not use this file except in compliance with the License.
10 ~ You may obtain a copy of the License at
11 ~
12 ~ http://www.apache.org/licenses/LICENSE-2.0
13 ~
14 ~ Unless required by applicable law or agreed to in writing, software
15 ~ distributed under the License is distributed on an "AS IS" BASIS,
16 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 ~ See the License for the specific language governing permissions and
18 ~ limitations under the License.
19 ~ ============LICENSE_END=======================================================
20 ~
21 -->
22
Dan Timoneycf4c9862021-02-23 11:48:11 -050023<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">
Aijana Schumann4bd84be2020-08-27 09:01:53 +020024 <modelVersion>4.0.0</modelVersion>
25
26 <parent>
27 <groupId>org.onap.ccsdk.parent</groupId>
28 <artifactId>odlparent-lite</artifactId>
Dan Timoney3ee092a2021-04-19 17:09:25 -040029 <version>2.1.3</version>
Aijana Schumann4bd84be2020-08-27 09:01:53 +020030 <relativePath/>
31 </parent>
32
33 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
34 <artifactId>sdnr-wt-odlux-installer</artifactId>
Dan Timoney3ee092a2021-04-19 17:09:25 -040035 <version>1.1.5-SNAPSHOT</version>
Aijana Schumann4bd84be2020-08-27 09:01:53 +020036 <packaging>pom</packaging>
37
38 <name>ccsdk-features :: ${project.artifactId}</name>
39 <licenses>
40 <license>
41 <name>Apache License, Version 2.0</name>
42 <url>http://www.apache.org/licenses/LICENSE-2.0</url>
43 </license>
44 </licenses>
45
46 <properties>
47 <application.name>sdnr-wt-odlux-installer</application.name>
48 <include.transitive.dependencies>false</include.transitive.dependencies>
49 </properties>
50
51 <build>
52 <plugins>
53 <plugin>
54 <artifactId>maven-assembly-plugin</artifactId>
55 <executions>
56 <execution>
57 <id>maven-repo-zip</id>
58 <goals>
59 <goal>single</goal>
60 </goals>
61 <phase>package</phase>
62 <configuration>
63 <attach>true</attach>
64 <finalName>stage/${application.name}-${project.version}</finalName>
65 <descriptors>
66 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
67 </descriptors>
68 <appendAssemblyId>true</appendAssemblyId>
69 </configuration>
70 </execution>
71 </executions>
72 </plugin>
73 <plugin>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-dependency-plugin</artifactId>
76 <executions>
77 <execution>
78 <id>unpack features</id>
79 <phase>generate-sources</phase>
80 <goals>
81 <goal>unpack</goal>
82 </goals>
83 <configuration>
84 <includes>odlux/**</includes>
85 <outputDirectory>${project.build.directory}/assembly</outputDirectory>
86 <artifactItems>
87 <artifactItem>
88 <groupId>${project.groupId}</groupId>
89 <artifactId>sdnr-wt-odlux-framework</artifactId>
90 <version>${project.version}</version>
91 <type>jar</type>
92 <overWrite>false</overWrite>
93 </artifactItem>
94 <!-- connectApp -->
95 <artifactItem>
96 <groupId>${project.groupId}</groupId>
97 <artifactId>sdnr-wt-odlux-app-connectApp</artifactId>
98 <version>${project.version}</version>
99 <type>jar</type>
100 <overWrite>false</overWrite>
101 </artifactItem>
102 <!-- eventLogApp -->
103 <artifactItem>
104 <groupId>${project.groupId}</groupId>
105 <artifactId>sdnr-wt-odlux-app-eventLogApp</artifactId>
106 <version>${project.version}</version>
107 <type>jar</type>
108 <overWrite>false</overWrite>
109 </artifactItem>
110 <!-- helpApp -->
111 <artifactItem>
112 <groupId>${project.groupId}</groupId>
113 <artifactId>sdnr-wt-odlux-app-helpApp</artifactId>
114 <version>${project.version}</version>
115 <type>jar</type>
116 <overWrite>false</overWrite>
117 </artifactItem>
118 <!-- maintenanceApp -->
119 <artifactItem>
120 <groupId>${project.groupId}</groupId>
121 <artifactId>sdnr-wt-odlux-app-maintenanceApp</artifactId>
122 <version>${project.version}</version>
123 <type>jar</type>
124 <overWrite>false</overWrite>
125 </artifactItem>
126 <!-- minimumApp -->
127 <artifactItem>
128 <groupId>${project.groupId}</groupId>
129 <artifactId>sdnr-wt-odlux-app-minimumApp</artifactId>
130 <version>${project.version}</version>
131 <type>jar</type>
132 <overWrite>false</overWrite>
133 </artifactItem>
134 <!-- configurationApp -->
135 <artifactItem>
136 <groupId>${project.groupId}</groupId>
137 <artifactId>sdnr-wt-odlux-app-configurationApp</artifactId>
138 <version>${project.version}</version>
139 <type>jar</type>
140 <overWrite>false</overWrite>
141 </artifactItem>
142 <!-- demoApp -->
143 <artifactItem>
144 <groupId>${project.groupId}</groupId>
145 <artifactId>sdnr-wt-odlux-app-demoApp</artifactId>
146 <version>${project.version}</version>
147 <type>jar</type>
148 <overWrite>false</overWrite>
149 </artifactItem>
150 <!-- faultApp -->
151 <artifactItem>
152 <groupId>${project.groupId}</groupId>
153 <artifactId>sdnr-wt-odlux-app-faultApp</artifactId>
154 <version>${project.version}</version>
155 <type>jar</type>
156 <overWrite>false</overWrite>
157 </artifactItem>
Ravi Pendurty0f28ecc2021-02-03 16:10:57 +0100158 <!-- networkMapApp-->
Aijana Schumann7058ffa2020-08-31 13:24:43 +0200159 <artifactItem>
160 <groupId>${project.groupId}</groupId>
161 <artifactId>sdnr-wt-odlux-app-networkMapApp</artifactId>
162 <version>${project.version}</version>
163 <type>jar</type>
164 <overWrite>false</overWrite>
165 </artifactItem>
Ravi Pendurty0f28ecc2021-02-03 16:10:57 +0100166 <!-- linkCalculationApp-->
Aijana Schumann4bd84be2020-08-27 09:01:53 +0200167 <artifactItem>
168 <groupId>${project.groupId}</groupId>
169 <artifactId>sdnr-wt-odlux-app-linkCalculationApp</artifactId>
170 <version>${project.version}</version>
171 <type>jar</type>
172 <overWrite>false</overWrite>
173 </artifactItem>
174 <!-- inventoryApp -->
175 <artifactItem>
176 <groupId>${project.groupId}</groupId>
177 <artifactId>sdnr-wt-odlux-app-inventoryApp</artifactId>
178 <version>${project.version}</version>
179 <type>jar</type>
180 <overWrite>false</overWrite>
181 </artifactItem>
182 <!-- mediatorApp -->
183 <artifactItem>
184 <groupId>${project.groupId}</groupId>
185 <artifactId>sdnr-wt-odlux-app-mediatorApp</artifactId>
186 <version>${project.version}</version>
187 <type>jar</type>
188 <overWrite>false</overWrite>
189 </artifactItem>
190 <!-- performanceHistoryApp -->
191 <artifactItem>
192 <groupId>${project.groupId}</groupId>
193 <artifactId>sdnr-wt-odlux-app-performanceHistoryApp</artifactId>
194 <version>${project.version}</version>
195 <type>jar</type>
196 <overWrite>false</overWrite>
197 </artifactItem>
198 <!-- helpserver resources -->
199 <artifactItem>
200 <groupId>${project.groupId}</groupId>
201 <artifactId>sdnr-wt-helpserver-provider</artifactId>
202 <version>${project.version}</version>
203 <type>jar</type>
204 <overWrite>false</overWrite>
205 <includes>help/**</includes>
206 </artifactItem>
207 </artifactItems>
208 </configuration>
209 </execution>
210 </executions>
211 </plugin>
212 </plugins>
213 </build>
214</project>