blob: 580a5b2eb6548ae0baa59398a629b374bb803092 [file] [log] [blame]
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
Patrick Brady10bba352017-07-19 12:09:28 -07004 ONAP : APPC
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -04005 ================================================================================
John McClungf6332bd2018-06-13 13:07:38 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -04007 ================================================================================
Patrick Brady10bba352017-07-19 12:09:28 -07008 Copyright (C) 2017 Amdocs
9 =============================================================================
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040010 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.
Patrick Brady10bba352017-07-19 12:09:28 -070021
Patrick Brady10bba352017-07-19 12:09:28 -070022 ============LICENSE_END=========================================================
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040023 -->
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>
Patrick Brady07567592017-12-13 11:09:30 -080028 <groupId>org.onap.appc</groupId>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040029 <artifactId>appc-adapters</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070030 <version>1.4.0-SNAPSHOT</version>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040031 </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>
Patrick Brady07567592017-12-13 11:09:30 -0800152 <groupId>org.onap.appc</groupId>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400153 <artifactId>appc-ansible-adapter-features</artifactId>
154 <classifier>features</classifier>
155 <type>xml</type>
156 <version>${project.version}</version>
157 </dependency>
158
159 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800160 <groupId>org.onap.appc</groupId>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400161 <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>