blob: 66c47fd7c37b3ac9f5d3db8ec3876b094f724071 [file] [log] [blame]
Herbert Eiselt2376d8a2019-01-28 16:20:57 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3
4 * ============LICENSE_START=======================================================
5 * ONAP : CCSDK.sdnr.wt.devicemodel.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)55e06ff2019-03-14 13:33:50 -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">
Herbert Eiselt2376d8a2019-01-28 16:20:57 +010025 <modelVersion>4.0.0</modelVersion>
26
27 <parent>
28 <groupId>org.onap.ccsdk.parent</groupId>
29 <artifactId>odlparent-lite</artifactId>
Timoney, Dan (dt5972)528f6392019-03-19 18:29:32 -040030 <version>1.2.2-SNAPSHOT</version>
Timoney, Dan (dt5972)55e06ff2019-03-14 13:33:50 -040031 <relativePath/>
Herbert Eiselt2376d8a2019-01-28 16:20:57 +010032 </parent>
33
34 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
35 <artifactId>sdnr-wt-devicemodel-installer</artifactId>
Timoney, Dan (dt5972)528f6392019-03-19 18:29:32 -040036 <version>0.4.2-SNAPSHOT</version>
Herbert Eiselt2376d8a2019-01-28 16:20:57 +010037 <packaging>pom</packaging>
38 <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name>
39
40 <properties>
41 <application.name>sdnr-wt-devicemodel</application.name>
42 <include.transitive.dependencies>false</include.transitive.dependencies>
43 </properties>
44
45 <dependencies>
46 <dependency>
47 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
48 <artifactId>${application.name}-feature</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 <dependency>
60 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
61 <artifactId>sdnr-wt-devicemodel-model</artifactId>
62 <version>${project.version}</version>
63 </dependency>
64 </dependencies>
65 <build>
66 <plugins>
67 <plugin>
68 <artifactId>maven-assembly-plugin</artifactId>
69 <executions>
70 <execution>
71 <id>maven-repo-zip</id>
72 <goals>
73 <goal>single</goal>
74 </goals>
75 <phase>package</phase>
76 <configuration>
77 <attach>true</attach>
78 <finalName>stage/${application.name}-${project.version}</finalName>
79 <descriptors>
80 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
81 </descriptors>
82 <appendAssemblyId>true</appendAssemblyId>
83 </configuration>
84 </execution>
85 </executions>
86 </plugin>
87 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
89 <artifactId>maven-dependency-plugin</artifactId>
90 <executions>
91 <execution>
92 <id>copy-nested-dependencies</id>
93 <goals>
94 <goal>copy-dependencies</goal>
95 </goals>
96 <phase>prepare-package</phase>
97 <configuration>
98 <transitive>true</transitive>
99 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
100 <overWriteReleases>false</overWriteReleases>
101 <overWriteSnapshots>true</overWriteSnapshots>
102 <overWriteIfNewer>true</overWriteIfNewer>
103 <useRepositoryLayout>true</useRepositoryLayout>
104 <addParentPoms>false</addParentPoms>
105 <copyPom>false</copyPom>
106 </configuration>
107 </execution>
108 </executions>
109 </plugin>
110 </plugins>
111 </build>
112</project>