Use latest released parent pom
[ccsdk/features.git] / sdnr / wt / odlux / apps / app-installer / pom.xml
1 <?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
23 <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">
24     <modelVersion>4.0.0</modelVersion>
25
26     <parent>
27         <groupId>org.onap.ccsdk.parent</groupId>
28         <artifactId>odlparent-lite</artifactId>
29         <version>2.4.4</version>
30         <relativePath/>
31     </parent>
32
33     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
34     <artifactId>sdnr-wt-odlux-apps-installer</artifactId>
35     <version>1.4.1-SNAPSHOT</version>
36     <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-apps</application.name>
48         <include.transitive.dependencies>false</include.transitive.dependencies>
49     </properties>
50
51     <dependencies>
52         <dependency>
53             <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
54             <artifactId>${application.name}-feature</artifactId>
55             <version>${project.version}</version>
56             <type>xml</type>
57             <classifier>features</classifier>
58             <exclusions>
59                 <exclusion>
60                     <groupId>*</groupId>
61                     <artifactId>*</artifactId>
62                 </exclusion>
63             </exclusions>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>sdnr-wt-odlux-app-apiDemo</artifactId>
68             <version>${project.version}</version>
69         </dependency>
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>sdnr-wt-odlux-app-connectApp</artifactId>
73             <version>${project.version}</version>
74         </dependency>
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>sdnr-wt-odlux-app-demoApp</artifactId>
78             <version>${project.version}</version>
79         </dependency>
80         <dependency>
81             <groupId>${project.groupId}</groupId>
82             <artifactId>sdnr-wt-odlux-app-faultApp</artifactId>
83             <version>${project.version}</version>
84         </dependency>
85         <dependency>
86             <groupId>${project.groupId}</groupId>
87             <artifactId>sdnr-wt-odlux-app-helpApp</artifactId>
88             <version>${project.version}</version>
89         </dependency>
90         <dependency>
91             <groupId>${project.groupId}</groupId>
92             <artifactId>sdnr-wt-odlux-app-inventoryApp</artifactId>
93             <version>${project.version}</version>
94         </dependency>
95         <dependency>
96             <groupId>${project.groupId}</groupId>
97             <artifactId>sdnr-wt-odlux-app-minimumApp</artifactId>
98             <version>${project.version}</version>
99         </dependency>
100         <dependency>
101             <groupId>${project.groupId}</groupId>
102             <artifactId>sdnr-wt-odlux-app-maintenanceApp</artifactId>
103             <version>${project.version}</version>
104         </dependency>
105         <dependency>
106             <groupId>${project.groupId}</groupId>
107             <artifactId>sdnr-wt-odlux-app-performanceHistoryApp</artifactId>
108             <version>${project.version}</version>
109         </dependency>
110         <dependency>
111             <groupId>${project.groupId}</groupId>
112             <artifactId>sdnr-wt-odlux-app-eventLogApp</artifactId>
113             <version>${project.version}</version>
114         </dependency>
115         <dependency>
116             <groupId>${project.groupId}</groupId>
117             <artifactId>sdnr-wt-odlux-app-configurationApp</artifactId>
118             <version>${project.version}</version>
119         </dependency>
120
121     </dependencies>
122
123     <build>
124         <plugins>
125             <plugin>
126                 <artifactId>maven-assembly-plugin</artifactId>
127                 <executions>
128                     <execution>
129                         <id>maven-repo-zip</id>
130                         <goals>
131                             <goal>single</goal>
132                         </goals>
133                         <phase>package</phase>
134                         <configuration>
135                             <attach>true</attach>
136                             <finalName>stage/${application.name}-${project.version}</finalName>
137                             <descriptors>
138                                 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
139                             </descriptors>
140                             <appendAssemblyId>true</appendAssemblyId>
141                         </configuration>
142                     </execution>
143                 </executions>
144             </plugin>
145             <plugin>
146                 <groupId>org.apache.maven.plugins</groupId>
147                 <artifactId>maven-dependency-plugin</artifactId>
148                 <executions>
149                     <execution>
150                         <id>copy-nested-dependencies</id>
151                         <goals>
152                             <goal>copy-dependencies</goal>
153                         </goals>
154                         <phase>prepare-package</phase>
155                         <configuration>
156                             <transitive>true</transitive>
157                             <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
158                             <overWriteReleases>false</overWriteReleases>
159                             <overWriteSnapshots>true</overWriteSnapshots>
160                             <overWriteIfNewer>true</overWriteIfNewer>
161                             <useRepositoryLayout>true</useRepositoryLayout>
162                             <addParentPoms>false</addParentPoms>
163                             <copyPom>false</copyPom>
164                             <!--<includeArtifactIds>sdnr-wt-apigateway-provider,${application.name}</includeArtifactIds> -->
165                             <!--<scope>provided</scope> -->
166                         </configuration>
167                     </execution>
168                 </executions>
169             </plugin>
170         </plugins>
171     </build>
172 </project>