Roll to next snapshot
[ccsdk/features.git] / sdnr / wt / helpserver / installer / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3     <modelVersion>4.0.0</modelVersion>
4
5     <parent>
6         <groupId>org.onap.ccsdk.parent</groupId>
7         <artifactId>odlparent-lite</artifactId>
8         <version>1.5.2-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
13     <artifactId>sdnr-wt-helpserver-installer</artifactId>
14     <version>0.7.1-SNAPSHOT</version>
15     <packaging>pom</packaging>
16
17     <name>ccsdk-features :: ${project.artifactId}</name>
18
19     <properties>
20         <application.name>sdnr-wt-helpserver</application.name>
21         <include.transitive.dependencies>false</include.transitive.dependencies>
22     </properties>
23
24     <dependencies>
25
26         <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>
114 </project>