blob: 0a295e049befa6f40745f6f7551238b24bcaca0c [file] [log] [blame]
Dan Timoney5363b272017-07-18 20:23:07 -04001<?xml version="1.0" encoding="UTF-8"?>
Dan Timoney8a3f1ea2018-02-16 17:12:41 -05002<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 Timoney5363b272017-07-18 20:23:07 -04005
Dan Timoney8a3f1ea2018-02-16 17:12:41 -05006 <parent>
7 <groupId>org.onap.ccsdk.parent</groupId>
8 <artifactId>odlparent-lite</artifactId>
9 <version>1.0.1-SNAPSHOT</version>
Timoney, Dan (dt5972)4caeb142018-03-02 13:10:30 -050010 <relativePath />
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050011 </parent>
Dan Timoney5363b272017-07-18 20:23:07 -040012
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050013 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
14 <artifactId>sql-resource-installer</artifactId>
15 <version>0.2.1-SNAPSHOT</version>
16 <packaging>pom</packaging>
Dan Timoney5363b272017-07-18 20:23:07 -040017
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050018 <name>ccsdk-sli-adaptors :: sql-resource :: ${project.artifactId}</name>
Dan Timoney5363b272017-07-18 20:23:07 -040019
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050020 <properties>
21 <application.name>ccsdk-sql-resource</application.name>
22 <features.boot>${application.name}</features.boot>
23 <features.repositories>mvn:org.onap.ccsdk.sli.adaptors/${features.boot}/${project.version}/xml/features</features.repositories>
24 <include.transitive.dependencies>false</include.transitive.dependencies>
25 </properties>
Dan Timoney5363b272017-07-18 20:23:07 -040026
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050027 <dependencies>
Dan Timoney5363b272017-07-18 20:23:07 -040028
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050029 <dependency>
30 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
31 <artifactId>ccsdk-sql-resource</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>
Dan Timoney5363b272017-07-18 20:23:07 -040042
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050043 <dependency>
44 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
45 <artifactId>sql-resource-provider</artifactId>
46 <version>${project.version}</version>
47 </dependency>
Dan Timoney5363b272017-07-18 20:23:07 -040048
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050049 </dependencies>
Dan Timoney5363b272017-07-18 20:23:07 -040050
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050051 <build>
52 <plugins>
53 <plugin>
54 <artifactId>maven-assembly-plugin</artifactId>
55 <version>2.6</version>
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>false</attach>
65 <finalName>stage/${application.name}-${project.version}</finalName>
66 <descriptors>
67 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
68 </descriptors>
69 <appendAssemblyId>false</appendAssemblyId>
70 </configuration>
71 </execution>
72 <execution>
73 <id>installer-zip</id>
74 <goals>
75 <goal>single</goal>
76 </goals>
77 <phase>package</phase>
78 <configuration>
79 <attach>true</attach>
80 <finalName>${application.name}-${project.version}-installer</finalName>
81 <descriptors>
82 <descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
83 </descriptors>
84 <appendAssemblyId>false</appendAssemblyId>
85 </configuration>
86 </execution>
87 </executions>
88 </plugin>
89 <plugin>
90 <groupId>org.apache.maven.plugins</groupId>
91 <artifactId>maven-dependency-plugin</artifactId>
92 <executions>
93 <execution>
94 <id>copy-dependencies</id>
95 <goals>
96 <goal>copy-dependencies</goal>
97 </goals>
98 <phase>prepare-package</phase>
99 <configuration>
100 <transitive>false</transitive>
101 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
102 <overWriteReleases>false</overWriteReleases>
103 <overWriteSnapshots>true</overWriteSnapshots>
104 <overWriteIfNewer>true</overWriteIfNewer>
105 <useRepositoryLayout>true</useRepositoryLayout>
106 <addParentPoms>false</addParentPoms>
107 <copyPom>false</copyPom>
108 <includeGroupIds>org.onap.ccsdk.sli.adaptor</includeGroupIds>
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>
137
138 </executions>
139 </plugin>
140
141 </plugins>
142 </build>
Dan Timoney5363b272017-07-18 20:23:07 -0400143</project>