Release ccsdk/sli/adaptors
[ccsdk/sli/adaptors.git] / message-router / consumer / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4
5         <parent>
6                 <groupId>org.onap.ccsdk.sli.adaptors.messagerouter</groupId>
7                 <artifactId>consumer.aggregate</artifactId>
8                 <version>1.1.0</version>
9         </parent>
10
11         <groupId>org.onap.ccsdk.sli.adaptors.messagerouter</groupId>
12         <artifactId>consumer.installer</artifactId>
13         <version>1.1.0</version>
14         <packaging>pom</packaging>
15
16         <properties>
17                 <application.name>messagerouter-consumer</application.name>
18                 <features.boot>messagerouter-consumer</features.boot>
19                 <features.repositories>mvn:${project.groupId}/consumer.features/${project.version}/xml/features</features.repositories>
20                 <include.transitive.dependencies>false</include.transitive.dependencies>
21         </properties>
22
23         <dependencies>
24                 <dependency>
25                         <groupId>${project.groupId}</groupId>
26                         <artifactId>consumer.api</artifactId>
27                         <version>${project.version}</version>
28                 </dependency>
29                 <dependency>
30                         <groupId>${project.groupId}</groupId>
31                         <artifactId>consumer.provider</artifactId>
32                         <version>${project.version}</version>
33                 </dependency>
34         </dependencies>
35
36         <build>
37                 <plugins>
38                         <plugin>
39                                 <artifactId>maven-assembly-plugin</artifactId>
40                                 <version>2.6</version>
41                                 <executions>
42                                         <execution>
43                                                 <id>maven-repo-zip</id>
44                                                 <goals>
45                                                         <goal>single</goal>
46                                                 </goals>
47                                                 <phase>package</phase>
48                                                 <configuration>
49                                                         <attach>true</attach>
50                                                         <finalName>stage/${application.name}-${project.version}</finalName>
51                                                         <descriptors>
52                                                                 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
53                                                         </descriptors>
54                                                         <appendAssemblyId>true</appendAssemblyId>
55                                                 </configuration>
56                                         </execution>
57                                         <execution>
58                                                 <id>installer-zip</id>
59                                                 <goals>
60                                                         <goal>single</goal>
61                                                 </goals>
62                                                 <phase>package</phase>
63                                                 <configuration>
64                                                         <attach>true</attach>
65                                                         <finalName>${application.name}-${project.version}-installer</finalName>
66                                                         <descriptors>
67                                                                 <descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
68                                                         </descriptors>
69                                                         <appendAssemblyId>false</appendAssemblyId>
70                                                 </configuration>
71                                         </execution>
72                                 </executions>
73                         </plugin>
74                         <plugin>
75                                 <groupId>org.apache.maven.plugins</groupId>
76                                 <artifactId>maven-dependency-plugin</artifactId>
77                                 <executions>
78                                         <execution>
79                                                 <id>copy-dependencies</id>
80                                                 <goals>
81                                                         <goal>copy-dependencies</goal>
82                                                 </goals>
83                                                 <phase>prepare-package</phase>
84                                                 <configuration>
85                                                         <transitive>false</transitive>
86                                                         <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
87                                                         <overWriteReleases>false</overWriteReleases>
88                                                         <overWriteSnapshots>true</overWriteSnapshots>
89                                                         <overWriteIfNewer>true</overWriteIfNewer>
90                                                         <useRepositoryLayout>true</useRepositoryLayout>
91                                                         <addParentPoms>false</addParentPoms>
92                                                         <copyPom>false</copyPom>
93                                                         <includeGroupIds>${project.groupId}</includeGroupIds>
94                                                         <scope>provided</scope>
95                                                 </configuration>
96                                         </execution>
97                                 </executions>
98                         </plugin>
99                         <plugin>
100                                 <artifactId>maven-resources-plugin</artifactId>
101                                 <version>2.6</version>
102                                 <executions>
103                                         <execution>
104                                                 <id>copy-version</id>
105                                                 <goals>
106                                                         <goal>copy-resources</goal>
107                                                 </goals><!-- here the phase you need -->
108                                                 <phase>validate</phase>
109                                                 <configuration>
110                                                         <outputDirectory>${basedir}/target/stage</outputDirectory>
111                                                         <resources>
112                                                                 <resource>
113                                                                         <directory>src/main/resources/scripts</directory>
114                                                                         <includes>
115                                                                                 <include>install-feature.sh</include>
116                                                                         </includes>
117                                                                         <filtering>true</filtering>
118                                                                 </resource>
119                                                         </resources>
120                                                 </configuration>
121                                         </execution>
122
123                                 </executions>
124                         </plugin>
125
126                 </plugins>
127         </build>
128 </project>