blob: 404410867aa1dc11b4448ffaa3d2e9d3234006d2 [file] [log] [blame]
Patrick Bradyc7d00752017-06-01 10:45:37 -07001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7 Copyright (C) 2017 Amdocs
8 ================================================================================
9 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
12
13 http://www.apache.org/licenses/LICENSE-2.0
14
15 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
20 ============LICENSE_END=========================================================
21 ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 -->
Patrick Bradyc7d00752017-06-01 10:45:37 -070023<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">
24 <modelVersion>4.0.0</modelVersion>
25 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080026 <groupId>org.onap.appc</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -070027 <artifactId>appc-adapters</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -080028 <version>1.3.0-SNAPSHOT</version>
Patrick Bradyc7d00752017-06-01 10:45:37 -070029 </parent>
30
31 <artifactId>appc-rest-healthcheck-adapter</artifactId>
32 <name>rest healthcheck adaptor</name>
33 <description>Abstraction to connect to and utilize the services of cloud providers such as OpenStack or VMWare.</description>
34 <packaging>pom</packaging>
35
36 <reporting>
37 <plugins>
38 <plugin>
39 <artifactId>maven-javadoc-plugin</artifactId>
40 <configuration>
41 <additionalDependencies>
42 <additionalDependency>
43 <groupId>org.slf4j</groupId>
44 <artifactId>slf4j-api</artifactId>
45 <version>${slf4j.version}</version>
46 </additionalDependency>
47 <additionalDependency>
48 <groupId>org.antlr</groupId>
49 <artifactId>antlr4</artifactId>
50 <version>${antlr.version}</version>
51 </additionalDependency>
52 <additionalDependency>
53 <groupId>org.antlr</groupId>
54 <artifactId>antlr4-runtime</artifactId>
55 <version>4.3</version>
56 </additionalDependency>
57 </additionalDependencies>
58 </configuration>
59 <reportSets>
60 <reportSet>
61 <reports>
62 <report>javadoc-no-fork</report>
63 <report>test-javadoc-no-fork</report>
64 </reports>
65 </reportSet>
66 <reportSet>
67 <id>aggregate</id>
68 <reports>
69 <report>aggregate</report>
70 <report>test-aggregate</report>
71 </reports>
72 </reportSet>
73 </reportSets>
74 </plugin>
75 <plugin>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-jxr-plugin</artifactId>
78 <version>2.3</version>
79 <reportSets>
80 <reportSet>
81 <id>aggregate</id>
82 <reports>
83 <report>aggregate</report>
84 <report>test-aggregate</report>
85 </reports>
86 </reportSet>
87 </reportSets>
88 </plugin>
89
90 <plugin>
91 <artifactId>maven-surefire-plugin</artifactId>
92 </plugin>
93
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-changelog-plugin</artifactId>
97 <version>2.3</version>
98 <reportSets>
99 <reportSet>
100 <id>dual-report</id>
101 <configuration>
102 <type>range</type>
103 <range>30</range>
104 </configuration>
105 <reports>
106 <report>changelog</report>
107 <report>file-activity</report>
108 </reports>
109 </reportSet>
110 </reportSets>
111 </plugin>
112
113 <plugin>
114 <groupId>org.codehaus.mojo</groupId>
115 <artifactId>taglist-maven-plugin</artifactId>
116 <version>2.4</version>
117 </plugin>
118 </plugins>
119 </reporting>
120
121 <dependencyManagement>
122 <dependencies>
123 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800124 <groupId>org.onap.appc</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700125 <artifactId>appc-rest-healthcheck-adapter-features</artifactId>
126 <classifier>features</classifier>
127 <type>xml</type>
128 <version>${project.version}</version>
129 </dependency>
130
131 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800132 <groupId>org.onap.appc</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700133 <artifactId>appc-rest-healthcheck-adapter-provider</artifactId>
134 <version>${project.version}</version>
135 </dependency>
136 </dependencies>
137
138
139 </dependencyManagement>
140
141 <modules>
142 <module>appc-rest-healthcheck-adapter-bundle</module>
143 <module>appc-rest-healthcheck-adapter-features</module>
144 <module>appc-rest-healthcheck-adapter-installer</module>
145 </modules>
146</project>