Prepare for release 0.4.1
[ccsdk/features.git] / sdnr / wt / odlux / core / 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         <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
6         <artifactId>sdnr-wt-odlux-core-installer</artifactId>
7         <version>0.4.1-SNAPSHOT</version>
8         <packaging>pom</packaging>
9         <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name>
10
11         <parent>
12                 <groupId>org.onap.ccsdk.parent</groupId>
13                 <artifactId>odlparent-lite</artifactId>
14                 <version>1.2.1</version>
15                 <relativePath/>
16         </parent>
17
18         <properties>
19                 <application.name>sdnr-wt-odlux-core</application.name>
20                 <include.transitive.dependencies>false</include.transitive.dependencies>
21         </properties>
22         <licenses>
23                 <license>
24                         <name>Apache License, Version 2.0</name>
25                         <url>http://www.apache.org/licenses/LICENSE-2.0</url>
26                 </license>
27         </licenses>
28
29         <dependencies>
30                 <dependency>
31                         <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
32                         <artifactId>${application.name}-feature</artifactId>
33                         <version>${project.version}</version>
34                         <type>xml</type>
35                         <classifier>features</classifier>
36                         <exclusions>
37                                 <exclusion>
38                                         <groupId>*</groupId>
39                                         <artifactId>*</artifactId>
40                                 </exclusion>
41                         </exclusions>
42                 </dependency>
43                 <dependency>
44                         <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
45                         <artifactId>${application.name}-provider</artifactId>
46                         <version>${project.version}</version>
47                 </dependency>
48         </dependencies>
49
50         <build>
51                 <plugins>
52                         <plugin>
53                                 <artifactId>maven-assembly-plugin</artifactId>
54                                 <executions>
55                                         <execution>
56                                                 <id>maven-repo-zip</id>
57                                                 <goals>
58                                                         <goal>single</goal>
59                                                 </goals>
60                                                 <phase>package</phase>
61                                                 <configuration>
62                                                         <attach>true</attach>
63                                                         <finalName>stage/${application.name}-${project.version}</finalName>
64                                                         <descriptors>
65                                                                 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
66                                                         </descriptors>
67                                                         <appendAssemblyId>true</appendAssemblyId>
68                                                 </configuration>
69                                         </execution>
70                                 </executions>
71                         </plugin>
72                         <plugin>
73                                 <groupId>org.apache.maven.plugins</groupId>
74                                 <artifactId>maven-dependency-plugin</artifactId>
75                                 <executions>
76                                         <execution>
77                                                 <id>copy-nested-dependencies</id>
78                                                 <goals>
79                                                         <goal>copy-dependencies</goal>
80                                                 </goals>
81                                                 <phase>prepare-package</phase>
82                                                 <configuration>
83                                                         <transitive>true</transitive>
84                                                         <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
85                                                         <overWriteReleases>false</overWriteReleases>
86                                                         <overWriteSnapshots>true</overWriteSnapshots>
87                                                         <overWriteIfNewer>true</overWriteIfNewer>
88                                                         <useRepositoryLayout>true</useRepositoryLayout>
89                                                         <addParentPoms>false</addParentPoms>
90                                                         <copyPom>false</copyPom>
91                                                         <!--<includeArtifactIds>sdnr-wt-apigateway-provider,${application.name}</includeArtifactIds> -->
92                                                         <!--<scope>provided</scope> -->
93                                                 </configuration>
94                                         </execution>
95                                 </executions>
96                         </plugin>
97                 </plugins>
98         </build>
99 </project>