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