Release version 1.3.1
[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 <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
25     <parent>
26         <groupId>org.onap.ccsdk.parent</groupId>
27         <artifactId>odlparent-lite</artifactId>
28         <version>2.3.3</version>
29         <relativePath/>
30     </parent>
31
32     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
33     <artifactId>sdnr-wt-odlux-apps-installer</artifactId>
34     <version>1.3.2-SNAPSHOT</version>
35     <packaging>pom</packaging>
36
37     <name>ccsdk-features :: ${project.artifactId}</name>
38     <licenses>
39         <license>
40             <name>Apache License, Version 2.0</name>
41             <url>http://www.apache.org/licenses/LICENSE-2.0</url>
42         </license>
43     </licenses>
44
45     <properties>
46         <application.name>sdnr-wt-odlux-apps</application.name>
47         <include.transitive.dependencies>false</include.transitive.dependencies>
48     </properties>
49
50     <dependencies>
51         <dependency>
52             <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
53             <artifactId>${application.name}-feature</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         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>sdnr-wt-odlux-app-apiDemo</artifactId>
67             <version>${project.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>sdnr-wt-odlux-app-connectApp</artifactId>
72             <version>${project.version}</version>
73         </dependency>
74         <dependency>
75             <groupId>${project.groupId}</groupId>
76             <artifactId>sdnr-wt-odlux-app-demoApp</artifactId>
77             <version>${project.version}</version>
78         </dependency>
79         <dependency>
80             <groupId>${project.groupId}</groupId>
81             <artifactId>sdnr-wt-odlux-app-faultApp</artifactId>
82             <version>${project.version}</version>
83         </dependency>
84         <dependency>
85             <groupId>${project.groupId}</groupId>
86             <artifactId>sdnr-wt-odlux-app-helpApp</artifactId>
87             <version>${project.version}</version>
88         </dependency>
89         <dependency>
90             <groupId>${project.groupId}</groupId>
91             <artifactId>sdnr-wt-odlux-app-inventoryApp</artifactId>
92             <version>${project.version}</version>
93         </dependency>
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>sdnr-wt-odlux-app-minimumApp</artifactId>
97             <version>${project.version}</version>
98         </dependency>
99         <dependency>
100             <groupId>${project.groupId}</groupId>
101             <artifactId>sdnr-wt-odlux-app-maintenanceApp</artifactId>
102             <version>${project.version}</version>
103         </dependency>
104         <dependency>
105             <groupId>${project.groupId}</groupId>
106             <artifactId>sdnr-wt-odlux-app-performanceHistoryApp</artifactId>
107             <version>${project.version}</version>
108         </dependency>
109         <dependency>
110             <groupId>${project.groupId}</groupId>
111             <artifactId>sdnr-wt-odlux-app-eventLogApp</artifactId>
112             <version>${project.version}</version>
113         </dependency>
114         <dependency>
115             <groupId>${project.groupId}</groupId>
116             <artifactId>sdnr-wt-odlux-app-configurationApp</artifactId>
117             <version>${project.version}</version>
118         </dependency>
119
120     </dependencies>
121
122     <build>
123         <plugins>
124             <plugin>
125                 <artifactId>maven-assembly-plugin</artifactId>
126                 <executions>
127                     <execution>
128                         <id>maven-repo-zip</id>
129                         <goals>
130                             <goal>single</goal>
131                         </goals>
132                         <phase>package</phase>
133                         <configuration>
134                             <attach>true</attach>
135                             <finalName>stage/${application.name}-${project.version}</finalName>
136                             <descriptors>
137                                 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
138                             </descriptors>
139                             <appendAssemblyId>true</appendAssemblyId>
140                         </configuration>
141                     </execution>
142                 </executions>
143             </plugin>
144             <plugin>
145                 <groupId>org.apache.maven.plugins</groupId>
146                 <artifactId>maven-dependency-plugin</artifactId>
147                 <executions>
148                     <execution>
149                         <id>copy-nested-dependencies</id>
150                         <goals>
151                             <goal>copy-dependencies</goal>
152                         </goals>
153                         <phase>prepare-package</phase>
154                         <configuration>
155                             <transitive>true</transitive>
156                             <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
157                             <overWriteReleases>false</overWriteReleases>
158                             <overWriteSnapshots>true</overWriteSnapshots>
159                             <overWriteIfNewer>true</overWriteIfNewer>
160                             <useRepositoryLayout>true</useRepositoryLayout>
161                             <addParentPoms>false</addParentPoms>
162                             <copyPom>false</copyPom>
163                             <!--<includeArtifactIds>sdnr-wt-apigateway-provider,${application.name}</includeArtifactIds> -->
164                             <!--<scope>provided</scope> -->
165                         </configuration>
166                     </execution>
167                 </executions>
168             </plugin>
169         </plugins>
170     </build>
171 </project>