blob: a05eaaabf29e31fbf4fc1bc2a099d3af0aa239fc [file] [log] [blame]
Timoney, Dan (dt5972)c9b19bb2018-07-17 11:23:42 -04001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)fc713292018-12-20 14:53:11 -05002<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">
Timoney, Dan (dt5972)c9b19bb2018-07-17 11:23:42 -04003 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
Timoney, Dan (dt5972)17a58432019-05-30 15:22:34 -04008 <version>1.2.4-SNAPSHOT</version>
Timoney, Dan (dt5972)fc713292018-12-20 14:53:11 -05009 <relativePath/>
Timoney, Dan (dt5972)c9b19bb2018-07-17 11:23:42 -040010 </parent>
11
12 <groupId>org.onap.sdnc.northbound</groupId>
13 <artifactId>sdnc-northbound-features-installer</artifactId>
Timoney, Dan (dt5972)17a58432019-05-30 15:22:34 -040014 <version>1.5.3-SNAPSHOT</version>
Timoney, Dan (dt5972)c9b19bb2018-07-17 11:23:42 -040015 <packaging>pom</packaging>
16
17 <name>sdnc-northbound :: features :: ${project.artifactId}</name>
18
19 <properties>
20 <application.name>sdnc-northbound-all</application.name>
21 <features.boot>${application.name}</features.boot>
22 <features.repositories>mvn:org.onap.sdnc.northbound/${features.boot}/${project.version}/xml/features</features.repositories>
23 <include.transitive.dependencies>false</include.transitive.dependencies>
24 </properties>
25
26 <dependencies>
27
28 <dependency>
29 <groupId>org.onap.sdnc.northbound</groupId>
30 <artifactId>${application.name}</artifactId>
31 <version>${project.version}</version>
32 <type>xml</type>
33 <classifier>features</classifier>
34 <exclusions>
35 <exclusion>
36 <groupId>*</groupId>
37 <artifactId>*</artifactId>
38 </exclusion>
39 </exclusions>
40 </dependency>
41
42
43 </dependencies>
44
45 <build>
46 <plugins>
47 <plugin>
48 <artifactId>maven-assembly-plugin</artifactId>
49 <executions>
50 <execution>
51 <id>maven-repo-zip</id>
52 <goals>
53 <goal>single</goal>
54 </goals>
55 <phase>package</phase>
56 <configuration>
57 <attach>true</attach>
58 <finalName>stage/${application.name}-${project.version}</finalName>
59 <descriptors>
60 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
61 </descriptors>
62 <appendAssemblyId>true</appendAssemblyId>
63 </configuration>
64 </execution>
65 <execution>
66 <id>installer-zip</id>
67 <goals>
68 <goal>single</goal>
69 </goals>
70 <phase>package</phase>
71 <configuration>
72 <attach>true</attach>
73 <finalName>${application.name}-${project.version}-installer</finalName>
74 <descriptors>
75 <descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
76 </descriptors>
77 <appendAssemblyId>false</appendAssemblyId>
78 </configuration>
79 </execution>
80 </executions>
81 </plugin>
82 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-dependency-plugin</artifactId>
85 <executions>
86 <execution>
87 <id>copy-dependencies</id>
88 <goals>
89 <goal>copy-dependencies</goal>
90 </goals>
91 <phase>prepare-package</phase>
92 <configuration>
93 <transitive>false</transitive>
94 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
95 <overWriteReleases>false</overWriteReleases>
96 <overWriteSnapshots>true</overWriteSnapshots>
97 <overWriteIfNewer>true</overWriteIfNewer>
98 <useRepositoryLayout>true</useRepositoryLayout>
99 <addParentPoms>false</addParentPoms>
100 <copyPom>false</copyPom>
101 <includeGroupIds>org.onap.sdnc.northbound</includeGroupIds>
102 <scope>provided</scope>
103 </configuration>
104 </execution>
105 </executions>
106 </plugin>
107 <plugin>
108 <artifactId>maven-resources-plugin</artifactId>
109 <version>2.6</version>
110 <executions>
111 <execution>
112 <id>copy-version</id>
113 <goals>
114 <goal>copy-resources</goal>
115 </goals><!-- here the phase you need -->
116 <phase>validate</phase>
117 <configuration>
118 <outputDirectory>${basedir}/target/stage</outputDirectory>
119 <resources>
120 <resource>
121 <directory>src/main/resources/scripts</directory>
122 <includes>
123 <include>install-feature.sh</include>
124 </includes>
125 <filtering>true</filtering>
126 </resource>
127 </resources>
128 </configuration>
129 </execution>
130
131 </executions>
132 </plugin>
133
134 </plugins>
135 </build>
136</project>