Merge "Dependency management for Restconf Client"
[ccsdk/sli/plugins.git] / restconf-client / 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.1.1-SNAPSHOT</version>
10     </parent>
11
12     <groupId>org.onap.ccsdk.sli.plugins</groupId>
13     <artifactId>restconf-client-installer</artifactId>
14     <version>0.3.1-SNAPSHOT</version>
15     <packaging>pom</packaging>
16
17     <name>ccsdk-sli-plugins :: restconf-client :: ${project.artifactId}</name>
18
19     <properties>
20         <application.name>ccsdk-restconf-client</application.name>
21         <features.boot>${application.name}</features.boot>
22         <features.repositories>mvn:org.onap.ccsdk.sli.plugins/${features.boot}/${project.version}/xml/features
23         </features.repositories>
24         <include.transitive.dependencies>false</include.transitive.dependencies>
25     </properties>
26
27     <dependencies>
28
29         <dependency>
30             <groupId>org.onap.ccsdk.sli.plugins</groupId>
31             <artifactId>${application.name}</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.plugins</groupId>
45             <artifactId>restconf-client-provider</artifactId>
46             <version>${project.version}</version>
47         </dependency>
48     </dependencies>
49
50     <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>true</attach>
64                             <finalName>stage/${application.name}-${project.version}</finalName>
65                             <descriptors>
66                                 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
67                             </descriptors>
68                             <appendAssemblyId>true</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                             <excludeGroupIds>org.onap.ccsdk.sli.core</excludeGroupIds>
108                             <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>
142 </project>