blob: 0262420191f0ab54e7b76491eed945147afe5579 [file] [log] [blame]
Herbert Eiseltfa548772019-02-12 14:32:50 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 * ============LICENSE_START=======================================================
4 * ONAP : CCSDK.feature.sdnr.wt
5 * ================================================================================
6 * Copyright (C) 2018 highstreet technologies GmbH Intellectual Property.
7 * All rights reserved.
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=========================================================
21-->
Timoney, Dan (dt5972)9560e602019-04-24 16:04:56 -040022<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)05e42772019-12-12 11:20:58 -050023 <modelVersion>4.0.0</modelVersion>
Herbert Eiseltfa548772019-02-12 14:32:50 +010024
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050025 <parent>
26 <groupId>org.onap.ccsdk.parent</groupId>
27 <artifactId>odlparent-lite</artifactId>
28 <version>1.5.1-SNAPSHOT</version>
29 <relativePath/>
30 </parent>
Herbert Eiseltfa548772019-02-12 14:32:50 +010031
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050032 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
33 <artifactId>sdnr-wt-feature-aggregator-installer</artifactId>
34 <version>0.7.0-SNAPSHOT</version>
35 <packaging>pom</packaging>
Herbert Eiseltfa548772019-02-12 14:32:50 +010036
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050037 <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name>
Herbert Eiseltfa548772019-02-12 14:32:50 +010038
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050039 <properties>
40 <application.name>sdnr-wt-feature-aggregator</application.name>
41 <include.transitive.dependencies>true</include.transitive.dependencies>
42 <ccsdk.features.version>${project.version}</ccsdk.features.version>
43 </properties>
Herbert Eiseltfa548772019-02-12 14:32:50 +010044
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050045 <dependencies>
46 <dependency>
47 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
48 <artifactId>${application.name}</artifactId>
49 <version>${project.version}</version>
50 <type>xml</type>
51 <classifier>features</classifier>
52 <!-- <exclusions> -->
53 <!-- <exclusion> -->
54 <!-- <groupId>*</groupId> -->
55 <!-- <artifactId>*</artifactId> -->
56 <!-- </exclusion> -->
57 <!-- </exclusions> -->
58 </dependency>
59 </dependencies>
Herbert Eiselt04454012019-03-12 18:52:06 +010060
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050061 <build>
62 <plugins>
63 <plugin>
64 <artifactId>maven-assembly-plugin</artifactId>
65 <executions>
66 <execution>
67 <id>maven-repo-zip</id>
68 <goals>
69 <goal>single</goal>
70 </goals>
71 <phase>package</phase>
72 <configuration>
73 <attach>true</attach>
74 <finalName>stage/${application.name}-${project.version}</finalName>
75 <descriptors>
76 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
77 </descriptors>
78 <appendAssemblyId>true</appendAssemblyId>
79 </configuration>
80 </execution>
81 </executions>
82 </plugin>
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-dependency-plugin</artifactId>
86 <executions>
87 <!-- <execution> -->
88 <!-- <id>copy-dependencies</id> -->
89 <!-- <goals> -->
90 <!-- <goal>copy-dependencies</goal> -->
91 <!-- </goals> -->
92 <!-- <phase>prepare-package</phase> -->
93 <!-- <configuration> -->
94 <!-- <transitive>false</transitive> -->
95 <!-- <outputDirectory>${project.build.directory}/assembly/system</outputDirectory> -->
96 <!-- <overWriteReleases>false</overWriteReleases> -->
97 <!-- <overWriteSnapshots>true</overWriteSnapshots> -->
98 <!-- <overWriteIfNewer>true</overWriteIfNewer> -->
99 <!-- <useRepositoryLayout>true</useRepositoryLayout> -->
100 <!-- <addParentPoms>false</addParentPoms> -->
101 <!-- <copyPom>false</copyPom> -->
102 <!-- <includeArtifactIds>${application.name}-model,${application.name}-provider,${application.name}</includeArtifactIds> -->
103 <!-- <scope>provided</scope> -->
104 <!-- </configuration> -->
105 <!-- </execution> -->
106 <execution>
107 <id>copy-nested-dependencies</id>
108 <goals>
109 <goal>copy-dependencies</goal>
110 </goals>
111 <phase>prepare-package</phase>
112 <configuration>
113 <transitive>true</transitive>
114 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
115 <overWriteReleases>false</overWriteReleases>
116 <overWriteSnapshots>true</overWriteSnapshots>
117 <overWriteIfNewer>true</overWriteIfNewer>
118 <useRepositoryLayout>true</useRepositoryLayout>
119 <addParentPoms>false</addParentPoms>
120 <copyPom>false</copyPom>
121 </configuration>
122 </execution>
123 <execution>
124 <id>unpack-cache-schema</id>
125 <goals>
126 <goal>unpack</goal>
127 </goals>
128 <phase>prepare-package</phase>
129 <configuration>
130 <artifactItems>
131 <artifactItem>
132 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
133 <artifactId>sdnr-wt-devicemanager-provider</artifactId>
134 <version>${project.version}</version>
135 <type>jar</type>
136 </artifactItem>
137 </artifactItems>
138 <outputDirectory>${project.build.directory}/assembly</outputDirectory>
139 <includes>preload.cache.schema/**</includes>
140 <overWriteReleases>false</overWriteReleases>
141 <overWriteSnapshots>true</overWriteSnapshots>
142 </configuration>
143 </execution>
144 </executions>
145 </plugin>
146 </plugins>
147 </build>
Herbert Eiseltfa548772019-02-12 14:32:50 +0100148</project>