Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 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 |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 13 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 14 | http://www.apache.org/licenses/LICENSE-2.0 |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 15 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 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 Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 21 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 22 | ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 23 | ============LICENSE_END========================================================= |
| 24 | --> |
| 25 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 26 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 27 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 28 | <modelVersion>4.0.0</modelVersion> |
| 29 | <parent> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 30 | <groupId>org.openecomp.appc</groupId> |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 31 | <artifactId>appc-adapters</artifactId> |
| 32 | <version>1.1.0-SNAPSHOT</version> |
| 33 | </parent> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 34 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 35 | <artifactId>appc-chef-adapter</artifactId> |
| 36 | <name>APPC Chef Adaptor</name> |
| 37 | <description> |
| 38 | Abstraction to connect to and utilize the services of cloud providers such as OpenStack or VMWare. |
| 39 | </description> |
| 40 | <packaging>pom</packaging> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 41 | |
Skip Wonnell | 8c9631e | 2017-08-29 14:16:20 -0500 | [diff] [blame] | 42 | <properties> |
| 43 | <licenseDir>${project.parent.parent.basedir}</licenseDir> |
| 44 | </properties> |
| 45 | |
| 46 | <reporting> |
| 47 | <plugins> |
| 48 | <plugin> |
| 49 | <artifactId>maven-javadoc-plugin</artifactId> |
| 50 | <configuration> |
| 51 | <additionalDependencies> |
| 52 | <additionalDependency> |
| 53 | <groupId>org.slf4j</groupId> |
| 54 | <artifactId>slf4j-api</artifactId> |
| 55 | <version>${slf4j.version}</version> |
| 56 | </additionalDependency> |
| 57 | <additionalDependency> |
| 58 | <groupId>org.antlr</groupId> |
| 59 | <artifactId>antlr4</artifactId> |
| 60 | <version>${antlr.version}</version> |
| 61 | </additionalDependency> |
| 62 | <additionalDependency> |
| 63 | <groupId>org.antlr</groupId> |
| 64 | <artifactId>antlr4-runtime</artifactId> |
| 65 | <version>4.3</version> |
| 66 | </additionalDependency> |
| 67 | </additionalDependencies> |
| 68 | </configuration> |
| 69 | <reportSets> |
| 70 | <reportSet> |
| 71 | <reports> |
| 72 | <report>javadoc-no-fork</report> |
| 73 | <report>test-javadoc-no-fork</report> |
| 74 | </reports> |
| 75 | </reportSet> |
| 76 | <reportSet> |
| 77 | <id>aggregate</id> |
| 78 | <reports> |
| 79 | <report>aggregate</report> |
| 80 | <report>test-aggregate</report> |
| 81 | </reports> |
| 82 | </reportSet> |
| 83 | </reportSets> |
| 84 | </plugin> |
| 85 | <plugin> |
| 86 | <groupId>org.apache.maven.plugins</groupId> |
| 87 | <artifactId>maven-jxr-plugin</artifactId> |
| 88 | <version>2.3</version> |
| 89 | <reportSets> |
| 90 | <reportSet> |
| 91 | <id>aggregate</id> |
| 92 | <reports> |
| 93 | <report>aggregate</report> |
| 94 | <report>test-aggregate</report> |
| 95 | </reports> |
| 96 | </reportSet> |
| 97 | </reportSets> |
| 98 | </plugin> |
| 99 | |
| 100 | <plugin> |
| 101 | <artifactId>maven-surefire-plugin</artifactId> |
| 102 | </plugin> |
| 103 | |
| 104 | <plugin> |
| 105 | <groupId>org.apache.maven.plugins</groupId> |
| 106 | <artifactId>maven-changelog-plugin</artifactId> |
| 107 | <version>2.3</version> |
| 108 | <reportSets> |
| 109 | <reportSet> |
| 110 | <id>dual-report</id> |
| 111 | <configuration> |
| 112 | <type>range</type> |
| 113 | <range>30</range> |
| 114 | </configuration> |
| 115 | <reports> |
| 116 | <report>changelog</report> |
| 117 | <report>file-activity</report> |
| 118 | </reports> |
| 119 | </reportSet> |
| 120 | </reportSets> |
| 121 | </plugin> |
| 122 | |
| 123 | <plugin> |
| 124 | <groupId>org.codehaus.mojo</groupId> |
| 125 | <artifactId>taglist-maven-plugin</artifactId> |
| 126 | <version>2.4</version> |
| 127 | </plugin> |
| 128 | </plugins> |
| 129 | </reporting> |
| 130 | |
| 131 | <dependencyManagement> |
| 132 | <dependencies> |
| 133 | <dependency> |
| 134 | <groupId>org.openecomp.appc</groupId> |
| 135 | <artifactId>appc-chef-adapter-features</artifactId> |
| 136 | <classifier>features</classifier> |
| 137 | <type>xml</type> |
| 138 | <version>${project.version}</version> |
| 139 | </dependency> |
| 140 | |
| 141 | <dependency> |
| 142 | <groupId>org.openecomp.appc</groupId> |
| 143 | <artifactId>appc-chef-adapter-provider</artifactId> |
| 144 | <version>${project.version}</version> |
| 145 | </dependency> |
| 146 | </dependencies> |
| 147 | </dependencyManagement> |
| 148 | |
| 149 | <modules> |
| 150 | <module>appc-chef-adapter-bundle</module> |
| 151 | <module>appc-chef-adapter-features</module> |
| 152 | <module>appc-chef-adapter-installer</module> |
| 153 | </modules> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 154 | </project> |