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