Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 6 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 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 |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 12 | |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 13 | http://www.apache.org/licenses/LICENSE-2.0 |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 14 | |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 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========================================================= |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 21 | --> |
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Taka Cho | ea9b855 | 2018-03-23 15:57:59 -0400 | [diff] [blame] | 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 24 | <parent> |
Patrick Brady | 46f865c | 2018-08-13 10:00:29 -0700 | [diff] [blame] | 25 | <groupId>org.onap.appc.parent</groupId> |
| 26 | <artifactId>odlparent-lite</artifactId> |
Patrick Brady | 19ae780 | 2019-01-08 12:25:10 -0800 | [diff] [blame^] | 27 | <version>1.5.0-SNAPSHOT</version> |
Patrick Brady | 46f865c | 2018-08-13 10:00:29 -0700 | [diff] [blame] | 28 | <relativePath /> |
Taka Cho | ea9b855 | 2018-03-23 15:57:59 -0400 | [diff] [blame] | 29 | </parent> |
Patrick Brady | 46f865c | 2018-08-13 10:00:29 -0700 | [diff] [blame] | 30 | <groupId>org.onap.appc</groupId> |
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 31 | |
Taka Cho | ea9b855 | 2018-03-23 15:57:59 -0400 | [diff] [blame] | 32 | <modelVersion>4.0.0</modelVersion> |
| 33 | <packaging>pom</packaging> |
| 34 | <artifactId>appc-network-inventory-client</artifactId> |
| 35 | <name>APPC Network Inventory Client</name> |
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 36 | |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 37 | |
Taka Cho | ea9b855 | 2018-03-23 15:57:59 -0400 | [diff] [blame] | 38 | <properties> |
| 39 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Taka Cho | ea9b855 | 2018-03-23 15:57:59 -0400 | [diff] [blame] | 40 | <common.collections.version>3.2.2</common.collections.version> |
| 41 | <common.io.version>2.5</common.io.version> |
| 42 | <jettison.version>1.3.7</jettison.version> |
| 43 | <velocity.version>1.7</velocity.version> |
| 44 | <jackson.version>2.3.2</jackson.version> |
| 45 | <snakeyaml.version>1.12</snakeyaml.version> |
| 46 | </properties> |
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 47 | |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 48 | |
Taka Cho | ea9b855 | 2018-03-23 15:57:59 -0400 | [diff] [blame] | 49 | <dependencyManagement> |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 50 | |
Taka Cho | ea9b855 | 2018-03-23 15:57:59 -0400 | [diff] [blame] | 51 | <dependencies> |
| 52 | <dependency> |
| 53 | <groupId>org.onap.appc</groupId> |
| 54 | <artifactId>appc-network-inventory-client-features</artifactId> |
| 55 | <classifier>features</classifier> |
| 56 | <type>xml</type> |
| 57 | <version>${project.version}</version> |
| 58 | </dependency> |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 59 | |
Taka Cho | ea9b855 | 2018-03-23 15:57:59 -0400 | [diff] [blame] | 60 | <dependency> |
| 61 | <groupId>org.onap.appc</groupId> |
| 62 | <artifactId>appc-network-inventory-client-provider</artifactId> |
| 63 | <version>${project.version}</version> |
| 64 | </dependency> |
| 65 | </dependencies> |
| 66 | </dependencyManagement> |
| 67 | <modules> |
| 68 | <module>provider</module> |
| 69 | <module>features</module> |
| 70 | <module>installer</module> |
| 71 | </modules> |
Patrick Brady | ccd67e9 | 2018-11-12 12:14:11 -0800 | [diff] [blame] | 72 | <version>1.5.0-SNAPSHOT</version> |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 73 | </project> |