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