Set version to 6.0.0
[cli.git] / products / onap-elalto / 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-elalto</artifactId>
27         <version>6.0.0-SNAPSHOT</version>
28     </parent>
29
30     <artifactId>cli-products-onap-elalto-features</artifactId>
31     <name>cli/products/onap-elalto/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     </modules>
45
46      <build>
47          <pluginManagement>
48             <plugins>
49                 <plugin>
50                     <groupId>org.apache.maven.plugins</groupId>
51                     <artifactId>maven-resources-plugin</artifactId>
52                     <version>3.1.0</version>
53                     <executions>
54                         <execution>
55                             <id>copy-resource-script</id>
56                             <phase>install</phase>
57                             <goals>
58                                 <goal>copy-resources</goal>
59                             </goals>
60
61                             <configuration>
62                                 <outputDirectory>../../../../products/target/script</outputDirectory>
63                                 <resources>
64                                     <resource>
65                                         <directory>${project.basedir}/src/main/resources/script</directory>
66                                         <includes>
67                                             <include>*.*</include>
68                                         </includes>
69                                     </resource>
70                                 </resources>
71                             </configuration>
72                         </execution>
73                         <execution>
74                             <id>copy-resource-conf</id>
75                             <phase>install</phase>
76                             <goals>
77                                 <goal>copy-resources</goal>
78                             </goals>
79
80                             <configuration>
81                                 <outputDirectory>../../../../products/target/conf</outputDirectory>
82                                 <resources>
83                                     <resource>
84                                         <directory>${project.basedir}/src/main/resources/conf</directory>
85                                         <includes>
86                                             <include>*.*</include>
87                                         </includes>
88                                     </resource>
89                                 </resources>
90                             </configuration>
91                         </execution>
92                    </executions>
93                 </plugin>
94                 <plugin>
95                   <groupId>org.apache.maven.plugins</groupId>
96                   <artifactId>maven-dependency-plugin</artifactId>
97                   <executions>
98                     <execution>
99                       <id>copy-artifact</id>
100                       <phase>package</phase>
101                       <goals>
102                         <goal>copy</goal>
103                       </goals>
104                       <configuration>
105                         <artifactItems>
106                             <artifactItem>
107                               <groupId>${project.groupId}</groupId>
108                               <artifactId>${project.artifactId}</artifactId>
109                               <version>${project.version}</version>
110                               <type>${project.packaging}</type>
111                             </artifactItem>
112                         </artifactItems>
113                         <!-- copy to products dependencies -->
114                         <outputDirectory>../../../../products/target/lib</outputDirectory>
115                       </configuration>
116                     </execution>
117                   </executions>
118                 </plugin>
119             </plugins>
120         </pluginManagement>
121     </build>
122 </project>