Update license header in appc xml files
[appc.git] / appc-outbound / appc-network-inventory-client / 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"
23         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24         <modelVersion>4.0.0</modelVersion>
25         <parent>
26                 <groupId>org.onap.appc</groupId>
27                 <artifactId>appc-network-inventory-client</artifactId>
28                 <version>1.4.0-SNAPSHOT</version>
29         </parent>
30         <artifactId>appc-network-inventory-client-features</artifactId>
31         <name>APPC Network Inventory - Features</name>
32         <packaging>jar</packaging>
33
34         <dependencies>
35                 <dependency>
36                         <groupId>org.onap.appc</groupId>
37                         <artifactId>appc-network-inventory-client-provider</artifactId>
38                 </dependency>
39                 
40                 <dependency>
41                         <groupId>commons-lang</groupId>
42                         <artifactId>commons-lang</artifactId>
43                         <scope>compile</scope>
44                 </dependency>
45
46                 <dependency>
47                         <groupId>org.opendaylight.mdsal</groupId>
48                         <artifactId>features-mdsal</artifactId>
49                         <classifier>features</classifier>
50                         <type>xml</type>
51                         <scope>runtime</scope>
52                 </dependency>
53                 <dependency>
54                         <groupId>org.opendaylight.yangtools</groupId>
55                         <artifactId>features-yangtools</artifactId>
56                         <classifier>features</classifier>
57                         <type>xml</type>
58                         <scope>runtime</scope>
59                 </dependency>
60
61
62                 <dependency>
63                         <groupId>com.sun.jersey</groupId>
64                         <artifactId>jersey-client</artifactId>
65                         </dependency>
66                 <dependency>
67                         <groupId>com.sun.jersey</groupId>
68                         <artifactId>jersey-core</artifactId>
69                         </dependency>
70
71         </dependencies>
72
73         <build>
74                 <resources>
75                         <resource>
76                                 <filtering>true</filtering>
77                                 <directory>src/main/resources</directory>
78                         </resource>
79                 </resources>
80                 <plugins>
81                         <plugin>
82                                 <groupId>org.apache.maven.plugins</groupId>
83                                 <artifactId>maven-resources-plugin</artifactId>
84                                 <executions>
85                                         <execution>
86                                                 <id>filter</id>
87                                                 <goals>
88                                                         <goal>resources</goal>
89                                                 </goals>
90                                                 <phase>generate-resources</phase>
91                                         </execution>
92                                 </executions>
93                         </plugin>
94                         <plugin>
95                                 <groupId>org.codehaus.mojo</groupId>
96                                 <artifactId>build-helper-maven-plugin</artifactId>
97                                 <executions>
98                                         <execution>
99                                                 <id>attach-artifacts</id>
100                                                 <goals>
101                                                         <goal>attach-artifact</goal>
102                                                 </goals>
103                                                 <phase>package</phase>
104                                                 <configuration>
105                                                         <artifacts>
106                                                                 <artifact>
107                                                                         <file>${project.build.directory}/classes/${features.file}</file>
108                                                                         <type>xml</type>
109                                                                         <classifier>features</classifier>
110                                                                 </artifact>
111                                                         </artifacts>
112                                                 </configuration>
113                                         </execution>
114                                 </executions>
115                         </plugin>
116                 </plugins>
117         </build>
118 </project>