blob: 01f6b3f6efa67f20be8cd81ea1341e2f6836b61d [file] [log] [blame]
Herbert Eiselt8d39a392019-01-30 09:45:54 +01001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)9560e602019-04-24 16:04:56 -04002<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 -05003 <modelVersion>4.0.0</modelVersion>
Herbert Eiselt8d39a392019-01-30 09:45:54 +01004
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -05005 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
8 <version>1.5.1-SNAPSHOT</version>
9 <relativePath/>
10 </parent>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010011
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050012 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
13 <artifactId>sdnr-wt-helpserver-installer</artifactId>
14 <version>0.7.0-SNAPSHOT</version>
15 <packaging>pom</packaging>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010016
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050017 <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010018
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050019 <properties>
20 <application.name>sdnr-wt-helpserver</application.name>
21 <include.transitive.dependencies>false</include.transitive.dependencies>
22 </properties>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010023
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050024 <dependencies>
Herbert Eiselt8d39a392019-01-30 09:45:54 +010025
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050026 <dependency>
27 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
28 <artifactId>${application.name}-feature</artifactId>
29 <version>${project.version}</version>
30 <type>xml</type>
31 <classifier>features</classifier>
32 <exclusions>
33 <exclusion>
34 <groupId>*</groupId>
35 <artifactId>*</artifactId>
36 </exclusion>
37 </exclusions>
38 </dependency>
39 <dependency>
40 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
41 <artifactId>${application.name}-provider</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44 </dependencies>
45
46 <build>
47 <plugins>
48 <plugin>
49 <artifactId>maven-assembly-plugin</artifactId>
50 <executions>
51 <execution>
52 <id>maven-repo-zip</id>
53 <goals>
54 <goal>single</goal>
55 </goals>
56 <phase>package</phase>
57 <configuration>
58 <attach>true</attach>
59 <finalName>stage/${application.name}-${project.version}</finalName>
60 <descriptors>
61 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
62 </descriptors>
63 <appendAssemblyId>true</appendAssemblyId>
64 </configuration>
65 </execution>
66 </executions>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-dependency-plugin</artifactId>
71 <executions>
72 <!-- <execution> -->
73 <!-- <id>copy-dependencies</id> -->
74 <!-- <goals> -->
75 <!-- <goal>copy-dependencies</goal> -->
76 <!-- </goals> -->
77 <!-- <phase>prepare-package</phase> -->
78 <!-- <configuration> -->
79 <!-- <transitive>true</transitive> -->
80 <!-- <outputDirectory>${project.build.directory}/assembly/system</outputDirectory> -->
81 <!-- <overWriteReleases>false</overWriteReleases> -->
82 <!-- <overWriteSnapshots>true</overWriteSnapshots> -->
83 <!-- <overWriteIfNewer>true</overWriteIfNewer> -->
84 <!-- <useRepositoryLayout>true</useRepositoryLayout> -->
85 <!-- <addParentPoms>false</addParentPoms> -->
86 <!-- <copyPom>false</copyPom> -->
87 <!-- <includeArtifactIds>sdnr-wt-apigateway-provider,${application.name}</includeArtifactIds> -->
88 <!-- <scope>provided</scope> -->
89 <!-- </configuration> -->
90 <!-- </execution> -->
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 <!--<includeArtifactIds>sdnr-wt-apigateway-provider,${application.name}</includeArtifactIds> -->
107 <!--<scope>provided</scope> -->
108 </configuration>
109 </execution>
110 </executions>
111 </plugin>
112 </plugins>
113 </build>
Herbert Eiselt8d39a392019-01-30 09:45:54 +0100114</project>