Roll to initial Honolulu release version
[ccsdk/sli/adaptors.git] / ansible-adapter / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017 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   ECOMP is a trademark and service mark of AT&T Intellectual Property.
23   ============LICENSE_END=========================================================
24   -->
25
26 <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">
27   <modelVersion>4.0.0</modelVersion>
28
29   <parent>
30     <groupId>org.onap.ccsdk.parent</groupId>
31     <artifactId>odlparent-lite</artifactId>
32     <version>2.1.0-SNAPSHOT</version>
33     <relativePath/>
34   </parent>
35
36   <groupId>org.onap.ccsdk.sli.adaptors</groupId>
37   <artifactId>ansible-adaptor</artifactId>
38   <version>1.1.0-SNAPSHOT</version>
39   <packaging>pom</packaging>
40
41   <name>ccsdk-sli-adaptors :: ansible-adapter</name>
42   <description>Abstractions to interact with Ansible server via REST</description>
43
44   <modules>
45     <module>ansible-adapter-bundle</module>
46     <module>ansible-adapter-installer</module>
47   </modules>
48
49   <dependencyManagement>
50     <dependencies>
51
52       <dependency>
53         <groupId>org.onap.appc</groupId>
54         <artifactId>ansible-adapter-features</artifactId>
55         <version>${project.version}</version>
56         <type>xml</type>
57         <classifier>features</classifier>
58       </dependency>
59
60       <dependency>
61         <groupId>org.onap.appc</groupId>
62         <artifactId>ansible-adapter-provider</artifactId>
63         <version>${project.version}</version>
64       </dependency>
65
66
67     </dependencies>
68
69
70   </dependencyManagement>
71
72   <pluginRepositories>
73    <!-- Black Duck plugin dependencies -->
74         <pluginRepository>
75             <id>JCenter</id>
76             <name>JCenter Repository</name>
77             <url>http://jcenter.bintray.com</url>
78         </pluginRepository>
79
80   </pluginRepositories>
81
82   <build>
83     <plugins>
84
85      <!-- Black duck plugin Not required for regular builds
86      <plugin> <groupId>com.blackducksoftware.integration</groupId> <artifactId>hub-maven-plugin</artifactId>
87            <version>1.4.0</version> <inherited>false</inherited> <configuration> <hubProjectName>${project.name}</hubProjectName>
88            <outputDirectory>${project.basedir}</outputDirectory> <deployHubBdio>false</deployHubBdio>
89            </configuration> <extensions>true</extensions>
90            <executions>
91                 <execution>
92                         <id>create-bdio-file</id>
93                         <phase>package</phase>
94                         <goals>
95                                 <goal>createHubOutput</goal>
96                         </goals>
97                 </execution>
98             </executions>
99
100      </plugin>
101      -->
102
103     </plugins>
104   </build>
105
106   <reporting>
107     <plugins>
108       <plugin>
109         <artifactId>maven-javadoc-plugin</artifactId>
110         <configuration>
111           <additionalDependencies>
112             <additionalDependency>
113               <groupId>org.slf4j</groupId>
114               <artifactId>slf4j-api</artifactId>
115               <version>${slf4j.version}</version>
116             </additionalDependency>
117             <additionalDependency>
118               <groupId>org.antlr</groupId>
119               <artifactId>antlr4</artifactId>
120               <version>${antlr.version}</version>
121             </additionalDependency>
122             <additionalDependency>
123               <groupId>org.antlr</groupId>
124               <artifactId>antlr4-runtime</artifactId>
125               <version>4.3</version>
126             </additionalDependency>
127           </additionalDependencies>
128         </configuration>
129         <reportSets>
130           <reportSet>
131             <reports>
132               <report>javadoc-no-fork</report>
133               <report>test-javadoc-no-fork</report>
134             </reports>
135           </reportSet>
136           <reportSet>
137             <id>aggregate</id>
138             <reports>
139               <report>aggregate</report>
140               <report>test-aggregate</report>
141             </reports>
142           </reportSet>
143         </reportSets>
144       </plugin>
145       <plugin>
146         <groupId>org.apache.maven.plugins</groupId>
147         <artifactId>maven-jxr-plugin</artifactId>
148         <version>2.3</version>
149         <reportSets>
150           <reportSet>
151             <id>aggregate</id>
152             <reports>
153               <report>aggregate</report>
154               <report>test-aggregate</report>
155             </reports>
156           </reportSet>
157         </reportSets>
158       </plugin>
159
160       <plugin>
161         <artifactId>maven-surefire-plugin</artifactId>
162       </plugin>
163
164       <plugin>
165         <groupId>org.apache.maven.plugins</groupId>
166         <artifactId>maven-changelog-plugin</artifactId>
167         <version>2.3</version>
168         <reportSets>
169           <reportSet>
170             <id>dual-report</id>
171             <configuration>
172               <type>range</type>
173               <range>30</range>
174             </configuration>
175             <reports>
176               <report>changelog</report>
177               <report>file-activity</report>
178             </reports>
179           </reportSet>
180         </reportSets>
181       </plugin>
182
183       <plugin>
184         <groupId>org.codehaus.mojo</groupId>
185         <artifactId>taglist-maven-plugin</artifactId>
186         <version>2.4</version>
187       </plugin>
188     </plugins>
189
190   </reporting>
191 </project>