blob: 6eae7c22a5ce055944d2b29fc969b068ee1a7b6d [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">
Herbert Eiseltfa548772019-02-12 14:32:50 +010023 <modelVersion>4.0.0</modelVersion>
24
25 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
26 <artifactId>sdnr-wt-feature-aggregator-installer</artifactId>
Timoney, Dan (dt5972)bc483372019-09-11 10:58:56 -040027 <version>0.7.0-SNAPSHOT</version>
Herbert Eiseltfa548772019-02-12 14:32:50 +010028 <packaging>pom</packaging>
29 <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name>
30
31 <parent>
32 <groupId>org.onap.ccsdk.parent</groupId>
33 <artifactId>odlparent-lite</artifactId>
Timoney, Dan (dt5972)dc10cbe2019-12-02 12:37:02 -050034 <version>1.5.1-SNAPSHOT</version>
Timoney, Dan (dt5972)9560e602019-04-24 16:04:56 -040035 <relativePath/>
Herbert Eiseltfa548772019-02-12 14:32:50 +010036 </parent>
37
38 <properties>
39 <application.name>sdnr-wt-feature-aggregator</application.name>
Herbert Eiselt04454012019-03-12 18:52:06 +010040 <include.transitive.dependencies>true</include.transitive.dependencies>
41 <ccsdk.features.version>${project.version}</ccsdk.features.version>
Herbert Eiseltfa548772019-02-12 14:32:50 +010042 </properties>
43
44 <dependencies>
Herbert Eiselt4ed0c8e2019-03-29 10:35:11 +010045 <dependency>
Herbert Eiselt04454012019-03-12 18:52:06 +010046 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
Herbert Eiseltfa548772019-02-12 14:32:50 +010047 <artifactId>${application.name}</artifactId>
48 <version>${project.version}</version>
49 <type>xml</type>
50 <classifier>features</classifier>
Herbert Eiselt04454012019-03-12 18:52:06 +010051<!-- <exclusions> -->
52<!-- <exclusion> -->
53<!-- <groupId>*</groupId> -->
54<!-- <artifactId>*</artifactId> -->
55<!-- </exclusion> -->
56<!-- </exclusions> -->
Herbert Eiseltfa548772019-02-12 14:32:50 +010057 </dependency>
58 </dependencies>
59
60 <build>
61 <plugins>
62 <plugin>
Herbert Eiseltfa548772019-02-12 14:32:50 +010063 <artifactId>maven-assembly-plugin</artifactId>
64 <executions>
65 <execution>
66 <id>maven-repo-zip</id>
67 <goals>
68 <goal>single</goal>
69 </goals>
70 <phase>package</phase>
71 <configuration>
72 <attach>true</attach>
73 <finalName>stage/${application.name}-${project.version}</finalName>
74 <descriptors>
75 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
76 </descriptors>
77 <appendAssemblyId>true</appendAssemblyId>
78 </configuration>
79 </execution>
80 </executions>
81 </plugin>
Herbert Eiselt04454012019-03-12 18:52:06 +010082 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-dependency-plugin</artifactId>
85 <executions>
86<!-- <execution> -->
87<!-- <id>copy-dependencies</id> -->
88<!-- <goals> -->
89<!-- <goal>copy-dependencies</goal> -->
90<!-- </goals> -->
91<!-- <phase>prepare-package</phase> -->
92<!-- <configuration> -->
93<!-- <transitive>false</transitive> -->
94<!-- <outputDirectory>${project.build.directory}/assembly/system</outputDirectory> -->
95<!-- <overWriteReleases>false</overWriteReleases> -->
96<!-- <overWriteSnapshots>true</overWriteSnapshots> -->
97<!-- <overWriteIfNewer>true</overWriteIfNewer> -->
98<!-- <useRepositoryLayout>true</useRepositoryLayout> -->
99<!-- <addParentPoms>false</addParentPoms> -->
100<!-- <copyPom>false</copyPom> -->
101<!-- <includeArtifactIds>${application.name}-model,${application.name}-provider,${application.name}</includeArtifactIds> -->
102<!-- <scope>provided</scope> -->
103<!-- </configuration> -->
104<!-- </execution> -->
105 <execution>
106 <id>copy-nested-dependencies</id>
107 <goals>
108 <goal>copy-dependencies</goal>
109 </goals>
110 <phase>prepare-package</phase>
111 <configuration>
112 <transitive>true</transitive>
113 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
114 <overWriteReleases>false</overWriteReleases>
115 <overWriteSnapshots>true</overWriteSnapshots>
116 <overWriteIfNewer>true</overWriteIfNewer>
117 <useRepositoryLayout>true</useRepositoryLayout>
118 <addParentPoms>false</addParentPoms>
119 <copyPom>false</copyPom>
120 </configuration>
121 </execution>
Herbert Eiselt4ed0c8e2019-03-29 10:35:11 +0100122 <execution>
123 <id>unpack-cache-schema</id>
124 <goals>
125 <goal>unpack</goal>
126 </goals>
127 <phase>prepare-package</phase>
128 <configuration>
129 <artifactItems>
130 <artifactItem>
131 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
132 <artifactId>sdnr-wt-devicemanager-provider</artifactId>
Timoney, Dan (dt5972)f3d5c902019-05-02 11:43:50 -0400133 <version>${project.version}</version>
Herbert Eiselt4ed0c8e2019-03-29 10:35:11 +0100134 <type>jar</type>
135 </artifactItem>
136 </artifactItems>
137 <outputDirectory>${project.build.directory}/assembly</outputDirectory>
138 <includes>preload.cache.schema/**</includes>
139 <overWriteReleases>false</overWriteReleases>
140 <overWriteSnapshots>true</overWriteSnapshots>
141 </configuration>
142 </execution>
Herbert Eiselt04454012019-03-12 18:52:06 +0100143 </executions>
144 </plugin>
Herbert Eiseltfa548772019-02-12 14:32:50 +0100145 </plugins>
146 </build>
Herbert Eiselt04454012019-03-12 18:52:06 +0100147
Herbert Eiseltfa548772019-02-12 14:32:50 +0100148</project>