blob: 7051ce984856fd9ffb846c67f3c6214322445ac4 [file] [log] [blame]
Herbert Eiselt8d39a392019-01-30 09:45:54 +01001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
8 <artifactId>sdnr-wt-helpserver-installer</artifactId>
9 <version>0.4.1-SNAPSHOT</version>
10 <packaging>pom</packaging>
11 <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name>
12
13 <parent>
14 <groupId>org.onap.ccsdk.parent</groupId>
15 <artifactId>odlparent-lite</artifactId>
16 <version>1.2.1-SNAPSHOT</version>
17 <relativePath />
18 </parent>
19
20 <properties>
21 <application.name>sdnr-wt-helpserver</application.name>
22 <include.transitive.dependencies>false</include.transitive.dependencies>
23 </properties>
24
25 <dependencies>
26
27 <dependency>
28 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
29 <artifactId>${application.name}-feature</artifactId>
30 <version>${project.version}</version>
31 <type>xml</type>
32 <classifier>features</classifier>
33 <exclusions>
34 <exclusion>
35 <groupId>*</groupId>
36 <artifactId>*</artifactId>
37 </exclusion>
38 </exclusions>
39 </dependency>
40 <dependency>
41 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
42 <artifactId>${application.name}-provider</artifactId>
43 <version>${project.version}</version>
44 </dependency>
45 </dependencies>
46
47 <build>
48 <plugins>
49 <plugin>
50 <artifactId>maven-assembly-plugin</artifactId>
51 <executions>
52 <execution>
53 <id>maven-repo-zip</id>
54 <goals>
55 <goal>single</goal>
56 </goals>
57 <phase>package</phase>
58 <configuration>
59 <attach>true</attach>
60 <finalName>stage/${application.name}-${project.version}</finalName>
61 <descriptors>
62 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
63 </descriptors>
64 <appendAssemblyId>true</appendAssemblyId>
65 </configuration>
66 </execution>
67 </executions>
68 </plugin>
69 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-dependency-plugin</artifactId>
72 <executions>
73 <!-- <execution> -->
74 <!-- <id>copy-dependencies</id> -->
75 <!-- <goals> -->
76 <!-- <goal>copy-dependencies</goal> -->
77 <!-- </goals> -->
78 <!-- <phase>prepare-package</phase> -->
79 <!-- <configuration> -->
80 <!-- <transitive>true</transitive> -->
81 <!-- <outputDirectory>${project.build.directory}/assembly/system</outputDirectory> -->
82 <!-- <overWriteReleases>false</overWriteReleases> -->
83 <!-- <overWriteSnapshots>true</overWriteSnapshots> -->
84 <!-- <overWriteIfNewer>true</overWriteIfNewer> -->
85 <!-- <useRepositoryLayout>true</useRepositoryLayout> -->
86 <!-- <addParentPoms>false</addParentPoms> -->
87 <!-- <copyPom>false</copyPom> -->
88 <!-- <includeArtifactIds>sdnr-wt-apigateway-provider,${application.name}</includeArtifactIds> -->
89 <!-- <scope>provided</scope> -->
90 <!-- </configuration> -->
91 <!-- </execution> -->
92 <execution>
93 <id>copy-nested-dependencies</id>
94 <goals>
95 <goal>copy-dependencies</goal>
96 </goals>
97 <phase>prepare-package</phase>
98 <configuration>
99 <transitive>true</transitive>
100 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
101 <overWriteReleases>false</overWriteReleases>
102 <overWriteSnapshots>true</overWriteSnapshots>
103 <overWriteIfNewer>true</overWriteIfNewer>
104 <useRepositoryLayout>true</useRepositoryLayout>
105 <addParentPoms>false</addParentPoms>
106 <copyPom>false</copyPom>
107 <!--<includeArtifactIds>sdnr-wt-apigateway-provider,${application.name}</includeArtifactIds> -->
108 <!--<scope>provided</scope> -->
109 </configuration>
110 </execution>
111 </executions>
112 </plugin>
113 </plugins>
114 </build>
115</project>