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