Use released parent pom
[ccsdk/sli/adaptors.git] / resource-assignment / installer / pom.xml
1 <?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"
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>
5
6     <parent>
7         <groupId>org.onap.ccsdk.parent</groupId>
8         <artifactId>odlparent-lite</artifactId>
9         <version>1.0.4</version>
10         <relativePath />
11     </parent>
12
13     <groupId>org.onap.ccsdk.sli.adaptors</groupId>
14     <artifactId>resource-assignment-installer</artifactId>
15     <version>0.2.4-SNAPSHOT</version>
16     <packaging>pom</packaging>
17
18     <name>ccsdk-sli-adaptors :: resource-assignment :: ${project.artifactId}</name>
19
20     <properties>
21         <application.name>ccsdk-resource-assignment</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>
26
27     <dependencies>
28
29         <dependency>
30             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
31             <artifactId>ccsdk-resource-assignment</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
43         <dependency>
44             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
45             <artifactId>resource-assignment-provider</artifactId>
46             <version>${project.version}</version>
47         </dependency>
48
49         <dependency>
50             <groupId>org.springframework</groupId>
51             <artifactId>spring-beans</artifactId>
52             <version>${spring.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>org.springframework</groupId>
56             <artifactId>spring-context</artifactId>
57             <version>${spring.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>org.springframework</groupId>
61             <artifactId>spring-jdbc</artifactId>
62             <version>${spring.version}</version>
63         </dependency>
64     </dependencies>
65
66     <build>
67         <plugins>
68             <plugin>
69                 <artifactId>maven-assembly-plugin</artifactId>
70                 <version>2.6</version>
71                 <executions>
72                     <execution>
73                         <id>maven-repo-zip</id>
74                         <goals>
75                             <goal>single</goal>
76                         </goals>
77                         <phase>package</phase>
78                         <configuration>
79                             <attach>false</attach>
80                             <finalName>stage/${application.name}-${project.version}</finalName>
81                             <descriptors>
82                                 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
83                             </descriptors>
84                             <appendAssemblyId>false</appendAssemblyId>
85                         </configuration>
86                     </execution>
87                     <execution>
88                         <id>installer-zip</id>
89                         <goals>
90                             <goal>single</goal>
91                         </goals>
92                         <phase>package</phase>
93                         <configuration>
94                             <attach>true</attach>
95                             <finalName>${application.name}-${project.version}-installer</finalName>
96                             <descriptors>
97                                 <descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
98                             </descriptors>
99                             <appendAssemblyId>false</appendAssemblyId>
100                         </configuration>
101                     </execution>
102                 </executions>
103             </plugin>
104             <plugin>
105                 <groupId>org.apache.maven.plugins</groupId>
106                 <artifactId>maven-dependency-plugin</artifactId>
107                 <executions>
108                     <execution>
109                         <id>copy-dependencies</id>
110                         <goals>
111                             <goal>copy-dependencies</goal>
112                         </goals>
113                         <phase>prepare-package</phase>
114                         <configuration>
115                             <transitive>false</transitive>
116                             <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
117                             <overWriteReleases>false</overWriteReleases>
118                             <overWriteSnapshots>true</overWriteSnapshots>
119                             <overWriteIfNewer>true</overWriteIfNewer>
120                             <useRepositoryLayout>true</useRepositoryLayout>
121                             <addParentPoms>false</addParentPoms>
122                             <copyPom>false</copyPom>
123                             <excludeGroupIds>org.onap.ccsdk.sli.core,org.opendaylight</excludeGroupIds>
124                             <scope>provided</scope>
125                         </configuration>
126                     </execution>
127                 </executions>
128             </plugin>
129             <plugin>
130                 <artifactId>maven-resources-plugin</artifactId>
131                 <version>2.6</version>
132                 <executions>
133                     <execution>
134                         <id>copy-version</id>
135                         <goals>
136                             <goal>copy-resources</goal>
137                         </goals><!-- here the phase you need -->
138                         <phase>validate</phase>
139                         <configuration>
140                             <outputDirectory>${basedir}/target/stage</outputDirectory>
141                             <resources>
142                                 <resource>
143                                     <directory>src/main/resources/scripts</directory>
144                                     <includes>
145                                         <include>install-feature.sh</include>
146                                     </includes>
147                                     <filtering>true</filtering>
148                                 </resource>
149                             </resources>
150                         </configuration>
151                     </execution>
152
153                 </executions>
154             </plugin>
155
156         </plugins>
157     </build>
158 </project>