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