blob: 3abe1a31b8cafb0306ed5f358942ee8f9a0abd90 [file] [log] [blame]
Herbert Eiselt316dbd62019-01-29 17:23:25 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3
4 * ============LICENSE_START=======================================================
5 * ONAP : CCSDK.sdnr.wt.websocketmanager.installer
6 * ================================================================================
7 * Copyright (C) 2018 highstreet technologies GmbH Intellectual Property.
8 * 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-->
Timoney, Dan (dt5972)9560e602019-04-24 16:04:56 -040024<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">
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050025 <modelVersion>4.0.0</modelVersion>
Herbert Eiselt316dbd62019-01-29 17:23:25 +010026
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050027 <parent>
28 <groupId>org.onap.ccsdk.parent</groupId>
29 <artifactId>odlparent-lite</artifactId>
Dan Timoney49035452020-01-30 09:53:35 -050030 <version>1.5.2-SNAPSHOT</version>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050031 <relativePath/>
32 </parent>
Herbert Eiselt316dbd62019-01-29 17:23:25 +010033
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050034 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
35 <artifactId>sdnr-wt-websocketmanager2-installer</artifactId>
Dan Timoney49035452020-01-30 09:53:35 -050036 <version>0.7.1-SNAPSHOT</version>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050037 <packaging>pom</packaging>
Herbert Eiselt316dbd62019-01-29 17:23:25 +010038
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050039 <name>ccsdk-features :: ${project.artifactId}</name>
Herbert Eiselt316dbd62019-01-29 17:23:25 +010040
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050041 <properties>
42 <application.name>sdnr-wt-websocketmanager2</application.name>
43 <include.transitive.dependencies>false</include.transitive.dependencies>
44 </properties>
Herbert Eiselt316dbd62019-01-29 17:23:25 +010045
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050046 <dependencies>
47 <dependency>
48 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
49 <artifactId>${application.name}-feature</artifactId>
50 <version>${project.version}</version>
51 <type>xml</type>
52 <classifier>features</classifier>
53 <exclusions>
54 <exclusion>
55 <groupId>*</groupId>
56 <artifactId>*</artifactId>
57 </exclusion>
58 </exclusions>
59 </dependency>
60 <dependency>
61 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
62 <artifactId>${application.name}-provider</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65 </dependencies>
66
67 <build>
68 <plugins>
69 <plugin>
70 <artifactId>maven-assembly-plugin</artifactId>
71 <executions>
72 <execution>
73 <id>maven-repo-zip</id>
74 <goals>
75 <goal>single</goal>
76 </goals>
77 <phase>package</phase>
78 <configuration>
79 <attach>true</attach>
80 <finalName>stage/${application.name}-${project.version}</finalName>
81 <descriptors>
82 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
83 </descriptors>
84 <appendAssemblyId>true</appendAssemblyId>
85 </configuration>
86 </execution>
87 </executions>
88 </plugin>
89 <plugin>
90 <groupId>org.apache.maven.plugins</groupId>
91 <artifactId>maven-dependency-plugin</artifactId>
92 <executions>
93 <!-- <execution> -->
94 <!-- <id>copy-dependencies</id> -->
95 <!-- <goals> -->
96 <!-- <goal>copy-dependencies</goal> -->
97 <!-- </goals> -->
98 <!-- <phase>prepare-package</phase> -->
99 <!-- <configuration> -->
100 <!-- <transitive>false</transitive> -->
101 <!-- <outputDirectory>${project.build.directory}/assembly/system</outputDirectory> -->
102 <!-- <overWriteReleases>false</overWriteReleases> -->
103 <!-- <overWriteSnapshots>true</overWriteSnapshots> -->
104 <!-- <overWriteIfNewer>true</overWriteIfNewer> -->
105 <!-- <useRepositoryLayout>true</useRepositoryLayout> -->
106 <!-- <addParentPoms>false</addParentPoms> -->
107 <!-- <copyPom>false</copyPom> -->
108 <!-- <includeArtifactIds>${application.name}-model,${application.name}-provider,${application.name}</includeArtifactIds> -->
109 <!-- <scope>provided</scope> -->
110 <!-- </configuration> -->
111 <!-- </execution> -->
112 <execution>
113 <id>copy-nested-dependencies</id>
114 <goals>
115 <goal>copy-dependencies</goal>
116 </goals>
117 <phase>prepare-package</phase>
118 <configuration>
119 <transitive>true</transitive>
120 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
121 <overWriteReleases>false</overWriteReleases>
122 <overWriteSnapshots>true</overWriteSnapshots>
123 <overWriteIfNewer>true</overWriteIfNewer>
124 <useRepositoryLayout>true</useRepositoryLayout>
125 <addParentPoms>false</addParentPoms>
126 <copyPom>false</copyPom>
127 </configuration>
128 </execution>
129 </executions>
130 </plugin>
131 </plugins>
132 </build>
Herbert Eiselt316dbd62019-01-29 17:23:25 +0100133</project>