blob: 7f100ec05b3ded7a6cd406b341183891b7cbe33f [file] [log] [blame]
Dan Timoneyea5bf0a2017-07-18 20:32:15 -04001<?xml version="1.0" encoding="UTF-8"?>
Dan Timoney10b6a722018-02-22 17:22:31 -06002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -04005
Dan Timoney10b6a722018-02-22 17:22:31 -06006 <parent>
7 <groupId>org.onap.ccsdk.parent</groupId>
8 <artifactId>odlparent-lite</artifactId>
Timoney, Dan (dt5972)751d50b2018-06-06 14:03:24 -04009 <version>1.1.0-SNAPSHOT</version>
Dan Timoney10b6a722018-02-22 17:22:31 -060010 <relativePath/>
11 </parent>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040012
Dan Timoney10b6a722018-02-22 17:22:31 -060013 <groupId>org.onap.ccsdk.sli.northbound</groupId>
14 <artifactId>dataChange-installer</artifactId>
Timoney, Dan (dt5972)751d50b2018-06-06 14:03:24 -040015 <version>0.3.0-SNAPSHOT</version>
Dan Timoney10b6a722018-02-22 17:22:31 -060016 <packaging>pom</packaging>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040017
Dan Timoney10b6a722018-02-22 17:22:31 -060018 <name>ccsdk-sli-northbound :: dataChange :: ${project.artifactId}</name>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040019
Dan Timoney10b6a722018-02-22 17:22:31 -060020 <properties>
21 <application.name>ccsdk-dataChange</application.name>
22 <features.boot>${application.name}</features.boot>
23 <features.repositories>mvn:org.onap.ccsdk.sli.northbound/${features.boot}/${project.version}/xml/features</features.repositories>
24 <include.transitive.dependencies>false</include.transitive.dependencies>
25 </properties>
26
27 <dependencies>
28
29 <dependency>
30 <groupId>org.onap.ccsdk.sli.northbound</groupId>
31 <artifactId>${application.name}</artifactId>
32 <version>${project.version}</version>
33 <type>xml</type>
34 <classifier>features</classifier>
35 <exclusions>
36 <exclusion>
37 <groupId>*</groupId>
38 <artifactId>*</artifactId>
39 </exclusion>
40 </exclusions>
41 </dependency>
42 <dependency>
43 <groupId>org.onap.ccsdk.sli.northbound</groupId>
44 <artifactId>dataChange-model</artifactId>
45 <version>${project.version}</version>
46 </dependency>
47
48 <dependency>
49 <groupId>org.onap.ccsdk.sli.northbound</groupId>
50 <artifactId>dataChange-provider</artifactId>
51 <version>${project.version}</version>
52 </dependency>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040053
54
Dan Timoney10b6a722018-02-22 17:22:31 -060055 </dependencies>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040056
Dan Timoney10b6a722018-02-22 17:22:31 -060057 <build>
58 <plugins>
59 <plugin>
60 <artifactId>maven-assembly-plugin</artifactId>
61 <version>2.6</version>
62 <executions>
63 <execution>
64 <id>maven-repo-zip</id>
65 <goals>
66 <goal>single</goal>
67 </goals>
68 <phase>package</phase>
69 <configuration>
Timoney, Dan (dt5972)cd11ecb2018-06-22 15:51:57 -040070 <attach>true</attach>
Dan Timoney10b6a722018-02-22 17:22:31 -060071 <finalName>stage/${application.name}-${project.version}</finalName>
72 <descriptors>
73 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
74 </descriptors>
Timoney, Dan (dt5972)cd11ecb2018-06-22 15:51:57 -040075 <appendAssemblyId>true</appendAssemblyId>
Dan Timoney10b6a722018-02-22 17:22:31 -060076 </configuration>
77 </execution>
78 <execution>
79 <id>installer-zip</id>
80 <goals>
81 <goal>single</goal>
82 </goals>
83 <phase>package</phase>
84 <configuration>
85 <attach>true</attach>
86 <finalName>${application.name}-${project.version}-installer</finalName>
87 <descriptors>
88 <descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
89 </descriptors>
90 <appendAssemblyId>false</appendAssemblyId>
91 </configuration>
92 </execution>
93 </executions>
94 </plugin>
95 <plugin>
96 <groupId>org.apache.maven.plugins</groupId>
97 <artifactId>maven-dependency-plugin</artifactId>
98 <executions>
99 <execution>
100 <id>copy-dependencies</id>
101 <goals>
102 <goal>copy-dependencies</goal>
103 </goals>
104 <phase>prepare-package</phase>
105 <configuration>
106 <transitive>false</transitive>
107 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
108 <overWriteReleases>false</overWriteReleases>
109 <overWriteSnapshots>true</overWriteSnapshots>
110 <overWriteIfNewer>true</overWriteIfNewer>
111 <useRepositoryLayout>true</useRepositoryLayout>
112 <addParentPoms>false</addParentPoms>
113 <copyPom>false</copyPom>
114 <includeGroupIds>org.onap.ccsdk.sli.northbound</includeGroupIds>
115 <scope>provided</scope>
116 </configuration>
117 </execution>
118 </executions>
119 </plugin>
120 <plugin>
121 <artifactId>maven-resources-plugin</artifactId>
122 <version>2.6</version>
123 <executions>
124 <execution>
125 <id>copy-version</id>
126 <goals>
127 <goal>copy-resources</goal>
128 </goals><!-- here the phase you need -->
129 <phase>validate</phase>
130 <configuration>
131 <outputDirectory>${basedir}/target/stage</outputDirectory>
132 <resources>
133 <resource>
134 <directory>src/main/resources/scripts</directory>
135 <includes>
136 <include>install-feature.sh</include>
137 </includes>
138 <filtering>true</filtering>
139 </resource>
140 </resources>
141 </configuration>
142 </execution>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -0400143
Dan Timoney10b6a722018-02-22 17:22:31 -0600144 </executions>
145 </plugin>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -0400146
Dan Timoney10b6a722018-02-22 17:22:31 -0600147 </plugins>
148 </build>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -0400149</project>