dfb413bfc60bc525cc428ec63b054d10f20f15c2
[appc.git] / appc-dg / appc-dg-shared / appc-dg-shared-features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
7   Copyright (C) 2017 Amdocs
8   ================================================================================
9   Licensed under the Apache License, Version 2.0 (the "License");
10   you may not use this file except in compliance with the License.
11   You may obtain a copy of the License at
12   
13        http://www.apache.org/licenses/LICENSE-2.0
14   
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20   ============LICENSE_END=========================================================
21   -->
22 <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">
23         <modelVersion>4.0.0</modelVersion>
24         <parent>
25                 <groupId>org.onap.appc</groupId>
26                 <artifactId>appc-dg-shared</artifactId>
27                 <version>1.4.0-SNAPSHOT</version>
28         </parent>
29         <artifactId>appc-dg-shared-features</artifactId>
30         <packaging>jar</packaging>
31
32         <dependencies>
33                 <dependency>
34                         <groupId>org.onap.appc</groupId>
35                         <artifactId>appc-dg-ssh</artifactId>
36                         <version>${project.version}</version>
37                 </dependency>
38                 <dependency>
39                         <groupId>org.onap.appc</groupId>
40                         <artifactId>appc-dg-netconf</artifactId>
41                         <version>${project.version}</version>
42                 </dependency>
43                 <dependency>
44                         <groupId>org.onap.appc</groupId>
45                         <artifactId>appc-dg-aai</artifactId>
46                         <version>${project.version}</version>
47                 </dependency>
48                 <dependency>
49                         <groupId>org.onap.appc</groupId>
50                         <artifactId>appc-dg-license-manager</artifactId>
51                         <version>${project.version}</version>
52                 </dependency>
53                 <dependency>
54                         <groupId>org.onap.appc</groupId>
55                         <artifactId>appc-dg-common</artifactId>
56                         <version>${project.version}</version>
57                 </dependency>
58         </dependencies>
59
60         <build>
61                 <resources>
62                         <resource>
63                                 <filtering>true</filtering>
64                                 <directory>src/main/resources</directory>
65                         </resource>
66                 </resources>
67                 <plugins>
68                         <plugin>
69                                 <groupId>org.apache.maven.plugins</groupId>
70                                 <artifactId>maven-resources-plugin</artifactId>
71                                 <executions>
72                                         <execution>
73                                                 <id>filter</id>
74                                                 <goals>
75                                                         <goal>resources</goal>
76                                                 </goals>
77                                                 <phase>generate-resources</phase>
78                                         </execution>
79                                 </executions>
80                         </plugin>
81                         <plugin>
82                                 <groupId>org.codehaus.mojo</groupId>
83                                 <artifactId>build-helper-maven-plugin</artifactId>
84                                 <executions>
85                                         <execution>
86                                                 <id>attach-artifacts</id>
87                                                 <goals>
88                                                         <goal>attach-artifact</goal>
89                                                 </goals>
90                                                 <phase>package</phase>
91                                                 <configuration>
92                                                         <artifacts>
93                                                                 <artifact>
94                                                                         <file>${project.build.directory}/classes/${features.file}</file>
95                                                                         <type>xml</type>
96                                                                         <classifier>features</classifier>
97                                                                 </artifact>
98                                                         </artifacts>
99                                                 </configuration>
100                                         </execution>
101                                 </executions>
102                         </plugin>
103                 </plugins>
104         </build>
105 </project>