blob: 9f1e290a5d1c99c90f73444a5e2b0372d32680a3 [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>
Patrick Bradyd3ef5472018-08-10 15:14:38 -070027 <parent>
28 <groupId>org.onap.appc.parent</groupId>
29 <artifactId>odlparent-lite</artifactId>
Patrick Brady99cdab22019-01-07 08:41:15 -080030 <version>1.4.1</version>
Patrick Bradyd3ef5472018-08-10 15:14:38 -070031 <relativePath />
32 </parent>
33 <groupId>org.onap.appc</groupId>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040034
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>
Patrick Brady99cdab22019-01-07 08:41:15 -080045 <version>1.4.1</version> <inherited>false</inherited> <configuration> <hubProjectName>${project.name}</hubProjectName>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -040046 <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>
Patrick Brady07567592017-12-13 11:09:30 -0800154 <groupId>org.onap.appc</groupId>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400155 <artifactId>appc-ansible-adapter-features</artifactId>
156 <classifier>features</classifier>
157 <type>xml</type>
158 <version>${project.version}</version>
159 </dependency>
160
161 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800162 <groupId>org.onap.appc</groupId>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400163 <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>
Patrick Bradyccd67e92018-11-12 12:14:11 -0800195 <version>1.5.0-SNAPSHOT</version>
Ashwin Sridharan0414b3e2017-06-14 23:11:25 -0400196</project>