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