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