blob: 9e9b060e694c271f91882f75734325a7d68dc378 [file] [log] [blame]
Dan Timoney5363b272017-07-18 20:23:07 -04001<?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">
Marcus G K Williams806052b2017-08-02 15:09:24 -07003 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <artifactId>aai-service</artifactId>
6 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
Dan Timoney122df0f2017-11-21 14:39:49 -05007 <version>0.1.1-SNAPSHOT</version>
Marcus G K Williams806052b2017-08-02 15:09:24 -07008 </parent>
9 <artifactId>aai-service-installer</artifactId>
10 <name>AAI Adaptor - Karaf Installer</name>
11 <packaging>pom</packaging>
Dan Timoney5363b272017-07-18 20:23:07 -040012
Marcus G K Williams806052b2017-08-02 15:09:24 -070013 <properties>
14 <application.name>sdnc-aai-service</application.name>
15 <features.boot>sdnc-aai-service</features.boot>
16 <features.repositories>mvn:org.onap.ccsdk.sli.adaptors/aai-service-features/${project.version}/xml/features</features.repositories>
17 <include.transitive.dependencies>false</include.transitive.dependencies>
18 </properties>
Dan Timoney5363b272017-07-18 20:23:07 -040019
Marcus G K Williams806052b2017-08-02 15:09:24 -070020 <dependencies>
Dan Timoney5363b272017-07-18 20:23:07 -040021
Marcus G K Williams806052b2017-08-02 15:09:24 -070022 <dependency>
23 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
24 <artifactId>aai-service-features</artifactId>
25 <version>${project.version}</version>
26 <classifier>features</classifier>
27 <type>xml</type>
28 <exclusions>
29 <exclusion>
30 <groupId>*</groupId>
31 <artifactId>*</artifactId>
32 </exclusion>
33 </exclusions>
34 </dependency>
Dan Timoney5363b272017-07-18 20:23:07 -040035
Marcus G K Williams806052b2017-08-02 15:09:24 -070036 <dependency>
37 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
38 <artifactId>aai-service-provider</artifactId>
39 <version>${project.version}</version>
40 </dependency>
Dan Timoney5363b272017-07-18 20:23:07 -040041
Marcus G K Williams806052b2017-08-02 15:09:24 -070042 <dependency>
43 <groupId>org.jvnet.jaxb2_commons</groupId>
44 <artifactId>jaxb2-basics-runtime</artifactId>
45 <version>${jvnet.jaxb2.version}</version>
46 </dependency>
Dan Timoney5363b272017-07-18 20:23:07 -040047
Marcus G K Williams806052b2017-08-02 15:09:24 -070048 </dependencies>
Dan Timoney5363b272017-07-18 20:23:07 -040049
Marcus G K Williams806052b2017-08-02 15:09:24 -070050 <build>
51 <plugins>
52 <plugin>
53 <artifactId>maven-assembly-plugin</artifactId>
54 <version>2.6</version>
55 <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>
68 <appendAssemblyId>false</appendAssemblyId>
69 </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>
83 <appendAssemblyId>false</appendAssemblyId>
84 </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>
107 <includeGroupIds>org.onap.ccsdk,org.jvnet.jaxb2_commons</includeGroupIds>
108 <excludeArtifactIds>sli-common,sli-provider,dblib-provider,dblib-common</excludeArtifactIds>
109 <scope>provided</scope>
110 </configuration>
111 </execution>
112 </executions>
113 </plugin>
114 <plugin>
115 <artifactId>maven-resources-plugin</artifactId>
116 <version>2.6</version>
117 <executions>
118 <execution>
119 <id>copy-version</id>
120 <goals>
121 <goal>copy-resources</goal>
122 </goals><!-- here the phase you need -->
123 <phase>validate</phase>
124 <configuration>
125 <outputDirectory>${basedir}/target/stage</outputDirectory>
126 <resources>
127 <resource>
128 <directory>src/main/resources/scripts</directory>
129 <includes>
130 <include>install-feature.sh</include>
131 </includes>
132 <filtering>true</filtering>
133 </resource>
134 </resources>
135 </configuration>
136 </execution>
Dan Timoney5363b272017-07-18 20:23:07 -0400137
Marcus G K Williams806052b2017-08-02 15:09:24 -0700138 </executions>
139 </plugin>
Dan Timoney5363b272017-07-18 20:23:07 -0400140
Marcus G K Williams806052b2017-08-02 15:09:24 -0700141 </plugins>
142 </build>
Dan Timoney5363b272017-07-18 20:23:07 -0400143
144</project>