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