Update license header on appc-adapter xml files
[appc.git] / appc-adapters / appc-netconf-adapter / 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     <parent>
24         <artifactId>appc-adapters</artifactId>
25         <groupId>org.onap.appc</groupId>
26         <version>1.4.0-SNAPSHOT</version>
27     </parent>
28     <modelVersion>4.0.0</modelVersion>
29
30     <artifactId>appc-netconf-adapter</artifactId>
31     <name>NETCONF adapter</name>
32     <packaging>pom</packaging>
33
34     <properties>
35         <feature.netconf.connector.version>1.0.1-Beryllium-SR1</feature.netconf.connector.version>
36     </properties>
37
38     <reporting>
39         <plugins>
40             <plugin>
41                 <artifactId>maven-javadoc-plugin</artifactId>
42                 <configuration>
43                     <additionalDependencies>
44                         <additionalDependency>
45                             <groupId>org.slf4j</groupId>
46                             <artifactId>slf4j-api</artifactId>
47                             <version>${slf4j.version}</version>
48                         </additionalDependency>
49                         <additionalDependency>
50                             <groupId>org.antlr</groupId>
51                             <artifactId>antlr4</artifactId>
52                             <version>${antlr.version}</version>
53                         </additionalDependency>
54                         <additionalDependency>
55                             <groupId>org.antlr</groupId>
56                             <artifactId>antlr4-runtime</artifactId>
57                             <version>4.3</version>
58                         </additionalDependency>
59                     </additionalDependencies>
60                 </configuration>
61                 <reportSets>
62                     <reportSet>
63                         <reports>
64                             <report>javadoc-no-fork</report>
65                             <report>test-javadoc-no-fork</report>
66                         </reports>
67                     </reportSet>
68                     <reportSet>
69                         <id>aggregate</id>
70                         <reports>
71                             <report>aggregate</report>
72                             <report>test-aggregate</report>
73                         </reports>
74                     </reportSet>
75                 </reportSets>
76             </plugin>
77             <plugin>
78                 <groupId>org.apache.maven.plugins</groupId>
79                 <artifactId>maven-jxr-plugin</artifactId>
80                 <version>2.3</version>
81                 <reportSets>
82                     <reportSet>
83                         <id>aggregate</id>
84                         <reports>
85                             <report>aggregate</report>
86                             <report>test-aggregate</report>
87                         </reports>
88                     </reportSet>
89                 </reportSets>
90             </plugin>
91
92             <plugin>
93                 <artifactId>maven-surefire-plugin</artifactId>
94             </plugin>
95
96             <plugin>
97                 <groupId>org.apache.maven.plugins</groupId>
98                 <artifactId>maven-changelog-plugin</artifactId>
99                 <version>2.3</version>
100                 <reportSets>
101                     <reportSet>
102                         <id>dual-report</id>
103                         <configuration>
104                             <type>range</type>
105                             <range>30</range>
106                         </configuration>
107                         <reports>
108                             <report>changelog</report>
109                             <report>file-activity</report>
110                         </reports>
111                     </reportSet>
112                 </reportSets>
113             </plugin>
114
115             <plugin>
116                 <groupId>org.codehaus.mojo</groupId>
117                 <artifactId>taglist-maven-plugin</artifactId>
118                 <version>2.4</version>
119             </plugin>
120         </plugins>
121     </reporting>
122
123     <dependencyManagement>
124         <dependencies>
125             <dependency>
126                 <groupId>org.onap.appc</groupId>
127                 <artifactId>appc-netconf-adapter-features</artifactId>
128                 <classifier>features</classifier>
129                 <type>xml</type>
130                 <version>${project.version}</version>
131             </dependency>
132             <dependency>
133                 <groupId>org.onap.appc</groupId>
134                 <artifactId>appc-netconf-adapter-provider</artifactId>
135                 <version>${project.version}</version>
136             </dependency>
137         </dependencies>
138     </dependencyManagement>
139
140     <modules>
141         <module>appc-netconf-adapter-bundle</module>
142         <module>appc-netconf-adapter-features</module>
143         <module>appc-netconf-installer</module>
144     </modules>
145
146
147 </project>