Singal, Kapil (ks220y) | 1424a8e | 2021-03-24 14:54:47 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
| 6 | Copyright (C) 2017-2018 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 | ============LICENSE_END========================================================= |
| 23 | --> |
Dan Timoney | 5383edf | 2022-10-20 15:29:33 -0400 | [diff] [blame] | 24 | |
Singal, Kapil (ks220y) | 557282a | 2021-05-04 12:22:25 -0400 | [diff] [blame] | 25 | <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"> |
Singal, Kapil (ks220y) | 1424a8e | 2021-03-24 14:54:47 -0400 | [diff] [blame] | 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | |
| 28 | <parent> |
| 29 | <groupId>org.onap.ccsdk.parent</groupId> |
| 30 | <artifactId>odlparent-lite</artifactId> |
Dan Timoney | b5a1f49 | 2022-11-07 13:38:17 -0500 | [diff] [blame^] | 31 | <version>2.5.0</version> |
Singal, Kapil (ks220y) | 1424a8e | 2021-03-24 14:54:47 -0400 | [diff] [blame] | 32 | <relativePath/> |
| 33 | </parent> |
| 34 | |
| 35 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 36 | <artifactId>chef-adaptor</artifactId> |
Dan Timoney | 5383edf | 2022-10-20 15:29:33 -0400 | [diff] [blame] | 37 | <version>1.6.0-SNAPSHOT</version> |
Singal, Kapil (ks220y) | 1424a8e | 2021-03-24 14:54:47 -0400 | [diff] [blame] | 38 | <packaging>pom</packaging> |
| 39 | |
| 40 | <name>ccsdk-sli-adaptors :: ${project.artifactId}</name> |
| 41 | <description> |
| 42 | Abstraction to connect to and utilize the services of cloud providers such as OpenStack or VMWare. |
| 43 | </description> |
| 44 | |
| 45 | <modules> |
| 46 | <module>chef-adaptor-bundle</module> |
| 47 | <module>chef-adaptor-installer</module> |
| 48 | </modules> |
| 49 | |
| 50 | <dependencyManagement> |
| 51 | <dependencies> |
| 52 | <dependency> |
| 53 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 54 | <artifactId>chef-adaptor-features</artifactId> |
| 55 | <version>${project.version}</version> |
| 56 | <type>xml</type> |
| 57 | <classifier>features</classifier> |
| 58 | </dependency> |
| 59 | |
| 60 | <dependency> |
| 61 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 62 | <artifactId>chef-adaptor-bundle</artifactId> |
| 63 | <version>${project.version}</version> |
| 64 | </dependency> |
| 65 | </dependencies> |
| 66 | </dependencyManagement> |
| 67 | |
| 68 | <reporting> |
| 69 | <plugins> |
| 70 | <plugin> |
| 71 | <artifactId>maven-javadoc-plugin</artifactId> |
| 72 | <configuration> |
| 73 | <additionalDependencies> |
| 74 | <additionalDependency> |
| 75 | <groupId>org.slf4j</groupId> |
| 76 | <artifactId>slf4j-api</artifactId> |
| 77 | <version>${slf4j.version}</version> |
| 78 | </additionalDependency> |
| 79 | <additionalDependency> |
| 80 | <groupId>org.antlr</groupId> |
| 81 | <artifactId>antlr4</artifactId> |
| 82 | <version>${antlr.version}</version> |
| 83 | </additionalDependency> |
| 84 | <additionalDependency> |
| 85 | <groupId>org.antlr</groupId> |
| 86 | <artifactId>antlr4-runtime</artifactId> |
| 87 | <version>4.3</version> |
| 88 | </additionalDependency> |
| 89 | </additionalDependencies> |
| 90 | </configuration> |
| 91 | <reportSets> |
| 92 | <reportSet> |
| 93 | <reports> |
| 94 | <report>javadoc-no-fork</report> |
| 95 | <report>test-javadoc-no-fork</report> |
| 96 | </reports> |
| 97 | </reportSet> |
| 98 | <reportSet> |
| 99 | <id>aggregate</id> |
| 100 | <reports> |
| 101 | <report>aggregate</report> |
| 102 | <report>test-aggregate</report> |
| 103 | </reports> |
| 104 | </reportSet> |
| 105 | </reportSets> |
| 106 | </plugin> |
| 107 | <plugin> |
| 108 | <groupId>org.apache.maven.plugins</groupId> |
| 109 | <artifactId>maven-jxr-plugin</artifactId> |
| 110 | <version>2.3</version> |
| 111 | <reportSets> |
| 112 | <reportSet> |
| 113 | <id>aggregate</id> |
| 114 | <reports> |
| 115 | <report>aggregate</report> |
| 116 | <report>test-aggregate</report> |
| 117 | </reports> |
| 118 | </reportSet> |
| 119 | </reportSets> |
| 120 | </plugin> |
| 121 | |
| 122 | <plugin> |
| 123 | <artifactId>maven-surefire-plugin</artifactId> |
| 124 | </plugin> |
| 125 | |
| 126 | <plugin> |
| 127 | <groupId>org.apache.maven.plugins</groupId> |
| 128 | <artifactId>maven-changelog-plugin</artifactId> |
| 129 | <version>2.3</version> |
| 130 | <reportSets> |
| 131 | <reportSet> |
| 132 | <id>dual-report</id> |
| 133 | <configuration> |
| 134 | <type>range</type> |
| 135 | <range>30</range> |
| 136 | </configuration> |
| 137 | <reports> |
| 138 | <report>changelog</report> |
| 139 | <report>file-activity</report> |
| 140 | </reports> |
| 141 | </reportSet> |
| 142 | </reportSets> |
| 143 | </plugin> |
| 144 | |
| 145 | <plugin> |
| 146 | <groupId>org.codehaus.mojo</groupId> |
| 147 | <artifactId>taglist-maven-plugin</artifactId> |
| 148 | <version>2.4</version> |
| 149 | </plugin> |
| 150 | </plugins> |
| 151 | |
| 152 | </reporting> |
| 153 | </project> |