Skip Wonnell | abe9420 | 2017-08-29 22:39:17 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
| 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
|
| 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 | 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" 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">
|
| 26 | <modelVersion>4.0.0</modelVersion>
|
| 27 | <parent>
|
| 28 | <artifactId>appc-java-client</artifactId>
|
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 29 | <groupId>org.onap.appc.client</groupId>
|
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 30 | <version>1.4.0-SNAPSHOT</version>
|
Skip Wonnell | abe9420 | 2017-08-29 22:39:17 -0500 | [diff] [blame] | 31 | </parent>
|
| 32 |
|
| 33 | <artifactId>client-lib</artifactId>
|
| 34 | <properties>
|
| 35 | <licenseDir>${project.parent.parent.basedir}</licenseDir>
|
| 36 | </properties>
|
| 37 |
|
| 38 | <dependencies>
|
| 39 | <dependency>
|
| 40 | <groupId>com.fasterxml.jackson.core</groupId>
|
| 41 | <artifactId>jackson-databind</artifactId>
|
| 42 | <version>${jackson.version}</version>
|
| 43 | </dependency>
|
| 44 | <dependency>
|
| 45 | <groupId>com.fasterxml.jackson.core</groupId>
|
| 46 | <artifactId>jackson-core</artifactId>
|
| 47 | <version>${jackson.version}</version>
|
| 48 | </dependency>
|
| 49 | <dependency>
|
| 50 | <groupId>com.fasterxml.jackson.core</groupId>
|
| 51 | <artifactId>jackson-annotations</artifactId>
|
| 52 | <version>${jackson.version}</version>
|
| 53 | </dependency>
|
| 54 | <dependency>
|
| 55 | <groupId>com.att.nsa</groupId>
|
| 56 | <artifactId>cambriaClient</artifactId>
|
Taka Cho | 2a7aaea | 2018-03-07 19:52:42 -0500 | [diff] [blame] | 57 | <exclusions>
|
| 58 | <exclusion>
|
| 59 | <artifactId>httpclient</artifactId>
|
| 60 | <groupId>org.apache.httpcomponents</groupId>
|
| 61 | </exclusion>
|
| 62 | </exclusions>
|
| 63 | </dependency>
|
| 64 | <dependency>
|
| 65 | <groupId>org.apache.httpcomponents</groupId>
|
| 66 | <artifactId>httpclient</artifactId>
|
| 67 | <version>4.5.3</version>
|
Skip Wonnell | abe9420 | 2017-08-29 22:39:17 -0500 | [diff] [blame] | 68 | </dependency>
|
| 69 | <dependency>
|
| 70 | <groupId>com.att.eelf</groupId>
|
| 71 | <artifactId>eelf-core</artifactId>
|
| 72 | </dependency>
|
| 73 | </dependencies>
|
| 74 | </project>
|