blob: 8a0a05c7a5d2caf880708adab22e2064083ed94f [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 Brady7f383f92018-07-30 14:35:31 -070029 <groupId>org.onap.appc.parent</groupId>
30 <artifactId>odlparent-lite</artifactId>
Patrick Brady9d380082018-10-09 11:32:38 -070031 <version>1.4.0</version>
Patrick Brady7f383f92018-07-30 14:35:31 -070032 <relativePath />
Skip Wonnell8c9631e2017-08-29 14:16:20 -050033 </parent>
Patrick Brady57b5eef2017-02-10 15:00:49 -080034
Skip Wonnell8c9631e2017-08-29 14:16:20 -050035 <artifactId>appc-chef-adapter</artifactId>
Patrick Brady7f383f92018-07-30 14:35:31 -070036 <groupId>org.onap.appc</groupId>
Patrick Bradyccd67e92018-11-12 12:14:11 -080037 <version>1.5.0-SNAPSHOT</version>
Skip Wonnell8c9631e2017-08-29 14:16:20 -050038 <name>APPC Chef Adaptor</name>
39 <description>
40 Abstraction to connect to and utilize the services of cloud providers such as OpenStack or VMWare.
41 </description>
42 <packaging>pom</packaging>
Patrick Brady57b5eef2017-02-10 15:00:49 -080043
Skip Wonnell8c9631e2017-08-29 14:16:20 -050044 <properties>
45 <licenseDir>${project.parent.parent.basedir}</licenseDir>
46 </properties>
47
48 <reporting>
49 <plugins>
50 <plugin>
51 <artifactId>maven-javadoc-plugin</artifactId>
52 <configuration>
53 <additionalDependencies>
54 <additionalDependency>
55 <groupId>org.slf4j</groupId>
56 <artifactId>slf4j-api</artifactId>
57 <version>${slf4j.version}</version>
58 </additionalDependency>
59 <additionalDependency>
60 <groupId>org.antlr</groupId>
61 <artifactId>antlr4</artifactId>
62 <version>${antlr.version}</version>
63 </additionalDependency>
64 <additionalDependency>
65 <groupId>org.antlr</groupId>
66 <artifactId>antlr4-runtime</artifactId>
67 <version>4.3</version>
68 </additionalDependency>
69 </additionalDependencies>
70 </configuration>
71 <reportSets>
72 <reportSet>
73 <reports>
74 <report>javadoc-no-fork</report>
75 <report>test-javadoc-no-fork</report>
76 </reports>
77 </reportSet>
78 <reportSet>
79 <id>aggregate</id>
80 <reports>
81 <report>aggregate</report>
82 <report>test-aggregate</report>
83 </reports>
84 </reportSet>
85 </reportSets>
86 </plugin>
87 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
89 <artifactId>maven-jxr-plugin</artifactId>
90 <version>2.3</version>
91 <reportSets>
92 <reportSet>
93 <id>aggregate</id>
94 <reports>
95 <report>aggregate</report>
96 <report>test-aggregate</report>
97 </reports>
98 </reportSet>
99 </reportSets>
100 </plugin>
101
102 <plugin>
103 <artifactId>maven-surefire-plugin</artifactId>
104 </plugin>
105
106 <plugin>
107 <groupId>org.apache.maven.plugins</groupId>
108 <artifactId>maven-changelog-plugin</artifactId>
109 <version>2.3</version>
110 <reportSets>
111 <reportSet>
112 <id>dual-report</id>
113 <configuration>
114 <type>range</type>
115 <range>30</range>
116 </configuration>
117 <reports>
118 <report>changelog</report>
119 <report>file-activity</report>
120 </reports>
121 </reportSet>
122 </reportSets>
123 </plugin>
124
125 <plugin>
126 <groupId>org.codehaus.mojo</groupId>
127 <artifactId>taglist-maven-plugin</artifactId>
128 <version>2.4</version>
129 </plugin>
130 </plugins>
131 </reporting>
132
133 <dependencyManagement>
134 <dependencies>
135 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800136 <groupId>org.onap.appc</groupId>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500137 <artifactId>appc-chef-adapter-features</artifactId>
138 <classifier>features</classifier>
139 <type>xml</type>
140 <version>${project.version}</version>
141 </dependency>
142
143 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800144 <groupId>org.onap.appc</groupId>
Skip Wonnell8c9631e2017-08-29 14:16:20 -0500145 <artifactId>appc-chef-adapter-provider</artifactId>
146 <version>${project.version}</version>
147 </dependency>
148 </dependencies>
149 </dependencyManagement>
150
151 <modules>
152 <module>appc-chef-adapter-bundle</module>
153 <module>appc-chef-adapter-features</module>
154 <module>appc-chef-adapter-installer</module>
155 </modules>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800156</project>