blob: 659a97c0753e033c6a596cf99a870f63939dc16a [file] [log] [blame]
Dan Timoney1b476832017-02-15 15:09:44 -05001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -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">
Dan Timoney1b476832017-02-15 15:09:44 -05003 <modelVersion>4.0.0</modelVersion>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -05004
Dan Timoney1b476832017-02-15 15:09:44 -05005 <parent>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -05006 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
8 <version>1.0.1-SNAPSHOT</version>
Dan Timoney1b476832017-02-15 15:09:44 -05009 </parent>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050010
11 <groupId>org.onap.sdnc.northbound</groupId>
Dan Timoney1b476832017-02-15 15:09:44 -050012 <artifactId>vnftools-installer</artifactId>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050013 <version>1.3.1-SNAPSHOT</version>
Dan Timoney1b476832017-02-15 15:09:44 -050014 <packaging>pom</packaging>
15
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050016 <name>sdnc-northbound :: vnftools :: ${project.artifactId}</name>
17
Dan Timoney1b476832017-02-15 15:09:44 -050018 <properties>
19 <application.name>sdnc-vnftools</application.name>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050020 <features.boot>${application.name}</features.boot>
21 <features.repositories>mvn:org.onap.sdnc.northbound/${application.name}/${project.version}/xml/features</features.repositories>
Dan Timoney1b476832017-02-15 15:09:44 -050022 <include.transitive.dependencies>false</include.transitive.dependencies>
23 </properties>
24
25 <dependencies>
26
27 <dependency>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050028 <groupId>${project.groupId}</groupId>
29 <artifactId>${application.name}</artifactId>
Dan Timoney1b476832017-02-15 15:09:44 -050030 <version>${project.version}</version>
Dan Timoney1b476832017-02-15 15:09:44 -050031 <type>xml</type>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050032 <classifier>features</classifier>
Dan Timoney1b476832017-02-15 15:09:44 -050033 <exclusions>
34 <exclusion>
35 <groupId>*</groupId>
36 <artifactId>*</artifactId>
37 </exclusion>
38 </exclusions>
39 </dependency>
40
41 <dependency>
Marcus G K Williamseb2d4022017-08-30 19:32:32 -070042 <groupId>org.onap.sdnc.northbound</groupId>
Dan Timoney1b476832017-02-15 15:09:44 -050043 <artifactId>vnftools-provider</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46
47
48 </dependencies>
49
50 <build>
51 <plugins>
52 <plugin>
53 <artifactId>maven-assembly-plugin</artifactId>
Guo Ruijing116bb852017-05-03 23:55:30 +000054 <version>2.6</version>
Dan Timoney1b476832017-02-15 15:09:44 -050055 <executions>
56 <execution>
57 <id>maven-repo-zip</id>
58 <goals>
59 <goal>single</goal>
60 </goals>
61 <phase>package</phase>
62 <configuration>
63 <attach>false</attach>
64 <finalName>stage/${application.name}-${project.version}</finalName>
65 <descriptors>
66 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
67 </descriptors>
Guo Ruijing116bb852017-05-03 23:55:30 +000068 <appendAssemblyId>false</appendAssemblyId>
Dan Timoney1b476832017-02-15 15:09:44 -050069 </configuration>
70 </execution>
71 <execution>
72 <id>installer-zip</id>
73 <goals>
74 <goal>single</goal>
75 </goals>
76 <phase>package</phase>
77 <configuration>
78 <attach>true</attach>
79 <finalName>${application.name}-${project.version}-installer</finalName>
80 <descriptors>
81 <descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
82 </descriptors>
Guo Ruijing116bb852017-05-03 23:55:30 +000083 <appendAssemblyId>false</appendAssemblyId>
Dan Timoney1b476832017-02-15 15:09:44 -050084 </configuration>
85 </execution>
86 </executions>
87 </plugin>
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-dependency-plugin</artifactId>
91 <executions>
92 <execution>
93 <id>copy-dependencies</id>
94 <goals>
95 <goal>copy-dependencies</goal>
96 </goals>
97 <phase>prepare-package</phase>
98 <configuration>
99 <transitive>false</transitive>
100 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
101 <overWriteReleases>false</overWriteReleases>
102 <overWriteSnapshots>true</overWriteSnapshots>
103 <overWriteIfNewer>true</overWriteIfNewer>
104 <useRepositoryLayout>true</useRepositoryLayout>
105 <addParentPoms>false</addParentPoms>
106 <copyPom>false</copyPom>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -0500107 <includeGroupIds>org.onap.sdnc.northbound</includeGroupIds>
Dan Timoney1b476832017-02-15 15:09:44 -0500108 <scope>provided</scope>
109 </configuration>
110 </execution>
111 </executions>
112 </plugin>
113 <plugin>
114 <artifactId>maven-resources-plugin</artifactId>
115 <version>2.6</version>
116 <executions>
117 <execution>
118 <id>copy-version</id>
119 <goals>
120 <goal>copy-resources</goal>
121 </goals><!-- here the phase you need -->
122 <phase>validate</phase>
123 <configuration>
124 <outputDirectory>${basedir}/target/stage</outputDirectory>
125 <resources>
126 <resource>
127 <directory>src/main/resources/scripts</directory>
128 <includes>
129 <include>install-feature.sh</include>
130 </includes>
131 <filtering>true</filtering>
132 </resource>
133 </resources>
134 </configuration>
135 </execution>
136
137 </executions>
138 </plugin>
139
140 </plugins>
141 </build>
Dan Timoney1b476832017-02-15 15:09:44 -0500142</project>