Release appc
[appc.git] / appc-adapters / appc-chef-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   ================================================================================
8   Copyright (C) 2017 Amdocs
9   =============================================================================
10   Licensed under the Apache License, Version 2.0 (the "License");
11   you may not use this file except in compliance with the License.
12   You may obtain a copy of the License at
13
14        http://www.apache.org/licenses/LICENSE-2.0
15
16   Unless required by applicable law or agreed to in writing, software
17   distributed under the License is distributed on an "AS IS" BASIS,
18   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19   See the License for the specific language governing permissions and
20   limitations under the License.
21
22   ============LICENSE_END=========================================================
23   -->
24 <project xmlns="http://maven.apache.org/POM/4.0.0"
25          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
27     <modelVersion>4.0.0</modelVersion>
28     <parent>
29         <groupId>org.onap.appc.parent</groupId>
30         <artifactId>odlparent-lite</artifactId>
31         <version>2.6.1</version>
32         <relativePath />
33     </parent>
34
35     <artifactId>appc-chef-adapter</artifactId>
36     <groupId>org.onap.appc</groupId>
37     <version>1.6.3</version>
38     <name>APPC Chef Adaptor</name>
39     <description>
40         Abstraction to connect to and utilize the services of cloud providers such as OpenStack or VMWare.
41     </description>
42     <packaging>pom</packaging>
43
44     <properties>
45         <licenseDir>${project.parent.parent.basedir}</licenseDir>
46     </properties>
47
48     <reporting>
49         <plugins>
50             <plugin>
51                 <artifactId>maven-javadoc-plugin</artifactId>
52                 <configuration>
53                     <additionalDependencies>
54                         <additionalDependency>
55                             <groupId>org.slf4j</groupId>
56                             <artifactId>slf4j-api</artifactId>
57                             <version>${slf4j.version}</version>
58                         </additionalDependency>
59                         <additionalDependency>
60                             <groupId>org.antlr</groupId>
61                             <artifactId>antlr4</artifactId>
62                             <version>${antlr.version}</version>
63                         </additionalDependency>
64                         <additionalDependency>
65                             <groupId>org.antlr</groupId>
66                             <artifactId>antlr4-runtime</artifactId>
67                             <version>4.3</version>
68                         </additionalDependency>
69                     </additionalDependencies>
70                 </configuration>
71                 <reportSets>
72                     <reportSet>
73                         <reports>
74                             <report>javadoc-no-fork</report>
75                             <report>test-javadoc-no-fork</report>
76                         </reports>
77                     </reportSet>
78                     <reportSet>
79                         <id>aggregate</id>
80                         <reports>
81                             <report>aggregate</report>
82                             <report>test-aggregate</report>
83                         </reports>
84                     </reportSet>
85                 </reportSets>
86             </plugin>
87             <plugin>
88                 <groupId>org.apache.maven.plugins</groupId>
89                 <artifactId>maven-jxr-plugin</artifactId>
90                 <version>2.3</version>
91                 <reportSets>
92                     <reportSet>
93                         <id>aggregate</id>
94                         <reports>
95                             <report>aggregate</report>
96                             <report>test-aggregate</report>
97                         </reports>
98                     </reportSet>
99                 </reportSets>
100             </plugin>
101
102             <plugin>
103                 <artifactId>maven-surefire-plugin</artifactId>
104             </plugin>
105
106             <plugin>
107                 <groupId>org.apache.maven.plugins</groupId>
108                 <artifactId>maven-changelog-plugin</artifactId>
109                 <version>2.3</version>
110                 <reportSets>
111                     <reportSet>
112                         <id>dual-report</id>
113                         <configuration>
114                             <type>range</type>
115                             <range>30</range>
116                         </configuration>
117                         <reports>
118                             <report>changelog</report>
119                             <report>file-activity</report>
120                         </reports>
121                     </reportSet>
122                 </reportSets>
123             </plugin>
124
125             <plugin>
126                 <groupId>org.codehaus.mojo</groupId>
127                 <artifactId>taglist-maven-plugin</artifactId>
128                 <version>2.4</version>
129             </plugin>
130         </plugins>
131     </reporting>
132
133     <dependencyManagement>
134         <dependencies>
135             <dependency>
136                 <groupId>org.onap.appc</groupId>
137                 <artifactId>appc-chef-adapter-features</artifactId>
138                 <classifier>features</classifier>
139                 <type>xml</type>
140                 <version>${project.version}</version>
141             </dependency>
142
143             <dependency>
144                 <groupId>org.onap.appc</groupId>
145                 <artifactId>appc-chef-adapter-provider</artifactId>
146                 <version>${project.version}</version>
147             </dependency>
148         </dependencies>
149     </dependencyManagement>
150
151     <modules>
152         <module>appc-chef-adapter-bundle</module>
153         <module>appc-chef-adapter-features</module>
154         <module>appc-chef-adapter-installer</module>
155     </modules>
156 </project>