Set version to 6.0.0
[cli.git] / products / onap-dublin / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3    Copyright © Intel Corporation 2019
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16  -->
17
18 <project xmlns="http://maven.apache.org/POM/4.0.0"
19          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
21          http://maven.apache.org/xsd/maven-4.0.0.xsd">
22     <modelVersion>4.0.0</modelVersion>
23
24     <parent>
25         <groupId>org.onap.cli</groupId>
26         <artifactId>cli-products-onap-dublin</artifactId>
27         <version>6.0.0-SNAPSHOT</version>
28     </parent>
29
30     <artifactId>cli-products-onap-dublin-features</artifactId>
31     <name>cli/products/onap-dublin/features</name>
32     <packaging>pom</packaging>
33
34     <modules>
35         <module>aai</module>
36         <module>msb</module>
37         <module>sdc</module>
38         <module>policy</module>
39         <module>multicloud</module>
40         <module>vfc</module>
41         <module>sdnc</module>
42         <module>so</module>
43         <module>vnfsdk</module>
44         <module>integration</module>
45     </modules>
46
47      <build>
48          <pluginManagement>
49             <plugins>
50                 <plugin>
51                     <groupId>org.apache.maven.plugins</groupId>
52                     <artifactId>maven-resources-plugin</artifactId>
53                     <version>3.1.0</version>
54                     <executions>
55                         <execution>
56                             <id>copy-resource-script</id>
57                             <phase>install</phase>
58                             <goals>
59                                 <goal>copy-resources</goal>
60                             </goals>
61
62                             <configuration>
63                                 <outputDirectory>../../../../products/target/script</outputDirectory>
64                                 <resources>
65                                     <resource>
66                                         <directory>${project.basedir}/src/main/resources/script</directory>
67                                         <includes>
68                                             <include>*.*</include>
69                                         </includes>
70                                     </resource>
71                                 </resources>
72                             </configuration>
73                         </execution>
74                         <execution>
75                             <id>copy-resource-conf</id>
76                             <phase>install</phase>
77                             <goals>
78                                 <goal>copy-resources</goal>
79                             </goals>
80
81                             <configuration>
82                                 <outputDirectory>../../../../products/target/conf</outputDirectory>
83                                 <resources>
84                                     <resource>
85                                         <directory>${project.basedir}/src/main/resources/conf</directory>
86                                         <includes>
87                                             <include>*.*</include>
88                                         </includes>
89                                     </resource>
90                                 </resources>
91                             </configuration>
92                         </execution>
93                    </executions>
94                 </plugin>
95                 <plugin>
96                   <groupId>org.apache.maven.plugins</groupId>
97                   <artifactId>maven-dependency-plugin</artifactId>
98                   <executions>
99                     <execution>
100                       <id>copy-artifact</id>
101                       <phase>package</phase>
102                       <goals>
103                         <goal>copy</goal>
104                       </goals>
105                       <configuration>
106                         <artifactItems>
107                             <artifactItem>
108                               <groupId>${project.groupId}</groupId>
109                               <artifactId>${project.artifactId}</artifactId>
110                               <version>${project.version}</version>
111                               <type>${project.packaging}</type>
112                             </artifactItem>
113                         </artifactItems>
114                         <!-- copy to products dependencies -->
115                         <outputDirectory>../../../../products/target/lib</outputDirectory>
116                       </configuration>
117                     </execution>
118                   </executions>
119                 </plugin>
120             </plugins>
121         </pluginManagement>
122     </build>
123 </project>