blob: 7a72ff45e1aca5222283832787d1ef44bcaaa181 [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell8c9631e2017-08-29 14:16:20 -05002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
John McClungf6332bd2018-06-13 13:07:38 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnell8c9631e2017-08-29 14:16:20 -05007 ================================================================================
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
Patrick Brady57b5eef2017-02-10 15:00:49 -080013
Skip Wonnell8c9631e2017-08-29 14:16:20 -050014 http://www.apache.org/licenses/LICENSE-2.0
Patrick Brady57b5eef2017-02-10 15:00:49 -080015
Skip Wonnell8c9631e2017-08-29 14:16:20 -050016 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 Brady57b5eef2017-02-10 15:00:49 -080021
Skip Wonnell8c9631e2017-08-29 14:16:20 -050022 ============LICENSE_END=========================================================
23 -->
24<project xmlns="http://maven.apache.org/POM/4.0.0"
25 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26 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>
Patrick Brady07567592017-12-13 11:09:30 -080029 <groupId>org.onap.appc</groupId>
Skip Wonnell8c9631e2017-08-29 14:16:20 -050030 <artifactId>appc-adapters</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070031 <version>1.4.0-SNAPSHOT</version>
Skip Wonnell8c9631e2017-08-29 14:16:20 -050032 </parent>
Patrick Brady57b5eef2017-02-10 15:00:49 -080033
Skip Wonnell8c9631e2017-08-29 14:16:20 -050034 <artifactId>appc-chef-adapter</artifactId>
35 <name>APPC Chef Adaptor</name>
36 <description>
37 Abstraction to connect to and utilize the services of cloud providers such as OpenStack or VMWare.
38 </description>
39 <packaging>pom</packaging>
Patrick Brady57b5eef2017-02-10 15:00:49 -080040
Skip Wonnell8c9631e2017-08-29 14:16:20 -050041 <properties>
42 <licenseDir>${project.parent.parent.basedir}</licenseDir>
43 </properties>
44
45 <reporting>
46 <plugins>
47 <plugin>
48 <artifactId>maven-javadoc-plugin</artifactId>
49 <configuration>
50 <additionalDependencies>
51 <additionalDependency>
52 <groupId>org.slf4j</groupId>
53 <artifactId>slf4j-api</artifactId>
54 <version>${slf4j.version}</version>
55 </additionalDependency>
56 <additionalDependency>
57 <groupId>org.antlr</groupId>
58 <artifactId>antlr4</artifactId>
59 <version>${antlr.version}</version>
60 </additionalDependency>
61 <additionalDependency>
62 <groupId>org.antlr</groupId>
63 <artifactId>antlr4-runtime</artifactId>
64 <version>4.3</version>
65 </additionalDependency>
66 </additionalDependencies>
67 </configuration>
68 <reportSets>
69 <reportSet>
70 <reports>
71 <report>javadoc-no-fork</report>
72 <report>test-javadoc-no-fork</report>
73 </reports>
74 </reportSet>
75 <reportSet>
76 <id>aggregate</id>
77 <reports>
78 <report>aggregate</report>
79 <report>test-aggregate</report>
80 </reports>
81 </reportSet>
82 </reportSets>
83 </plugin>
84 <plugin>
85 <groupId>org.apache.maven.plugins</groupId>
86 <artifactId>maven-jxr-plugin</artifactId>
87 <version>2.3</version>
88 <reportSets>
89 <reportSet>
90 <id>aggregate</id>
91 <reports>
92 <report>aggregate</report>
93 <report>test-aggregate</report>
94 </reports>
95 </reportSet>
96 </reportSets>
97 </plugin>
98
99 <plugin>
100 <artifactId>maven-surefire-plugin</artifactId>
101 </plugin>
102
103 <plugin>
104 <groupId>org.apache.maven.plugins</groupId>
105 <artifactId>maven-changelog-plugin</artifactId>
106 <version>2.3</version>
107 <reportSets>
108 <reportSet>
109 <id>dual-report</id>
110 <configuration>
111 <type>range</type>
112 <range>30</range>
113 </configuration>
114 <reports>
115 <report>changelog</report>
116 <report>file-activity</report>
117 </reports>
118 </reportSet>
119 </reportSets>
120 </plugin>
121
122 <plugin>
123 <groupId>org.codehaus.mojo</groupId>
124 <artifactId>taglist-maven-plugin</artifactId>
125 <version>2.4</version>
126 </plugin>
127 </plugins>
128 </reporting>
129
130 <dependencyManagement>
131 <dependencies>
132 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800133 <groupId>org.onap.appc</groupId>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500134 <artifactId>appc-chef-adapter-features</artifactId>
135 <classifier>features</classifier>
136 <type>xml</type>
137 <version>${project.version}</version>
138 </dependency>
139
140 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800141 <groupId>org.onap.appc</groupId>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500142 <artifactId>appc-chef-adapter-provider</artifactId>
143 <version>${project.version}</version>
144 </dependency>
145 </dependencies>
146 </dependencyManagement>
147
148 <modules>
149 <module>appc-chef-adapter-bundle</module>
150 <module>appc-chef-adapter-features</module>
151 <module>appc-chef-adapter-installer</module>
152 </modules>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800153</project>