dfilppi | f9a5a02 | 2018-02-14 20:28:34 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
dfilppi | a4c936a | 2017-08-03 21:26:02 +0000 | [diff] [blame] | 2 | <!-- |
| 3 | /* |
| 4 | * ============LICENSE_START=================================================== |
| 5 | * Copyright (c) 2017 Cloudify.co. All rights reserved. |
| 6 | * =================================================================== |
| 7 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 8 | * use this file except in compliance with the License. You may obtain a copy |
| 9 | * of the License at |
| 10 | * |
| 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | * |
| 13 | * Unless required by applicable law or agreed to in writing, software |
| 14 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 15 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 16 | * License for the specific language governing permissions and limitations under |
| 17 | * the License. |
| 18 | * ============LICENSE_END==================================================== |
| 19 | */ |
| 20 | --> |
dfilppi | a4c936a | 2017-08-03 21:26:02 +0000 | [diff] [blame] | 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 22 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
dfilppi | 82abd58 | 2018-03-13 12:05:27 +0000 | [diff] [blame] | 26 | <groupId>org.onap.so</groupId> |
dfilppi | a4c936a | 2017-08-03 21:26:02 +0000 | [diff] [blame] | 27 | <artifactId>aria-client</artifactId> |
dfilppi | 349585b | 2018-03-09 20:34:30 +0000 | [diff] [blame] | 28 | <parent> |
| 29 | <groupId>org.onap.so</groupId> |
| 30 | <artifactId>aria</artifactId> |
| 31 | <version>1.2.0-SNAPSHOT</version> |
| 32 | <relativePath>../pom.xml</relativePath> |
| 33 | </parent> |
dfilppi | a4c936a | 2017-08-03 21:26:02 +0000 | [diff] [blame] | 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.glassfish.jersey.core</groupId> |
| 38 | <artifactId>jersey-client</artifactId> |
| 39 | <version>2.26-b03</version> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.glassfish.jersey.media</groupId> |
| 43 | <artifactId>jersey-media-json-jackson1</artifactId> |
| 44 | <version>2.26-b03</version> |
| 45 | </dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 46 | <dependency> |
| 47 | <groupId>com.fasterxml.jackson.core</groupId> |
| 48 | <artifactId>jackson-core</artifactId> |
| 49 | <version>2.8.7</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>com.fasterxml.jackson.core</groupId> |
| 53 | <artifactId>jackson-annotations</artifactId> |
| 54 | <version>2.8.7</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>com.fasterxml.jackson.core</groupId> |
| 58 | <artifactId>jackson-databind</artifactId> |
| 59 | <version>2.8.7</version> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 63 | <artifactId>jackson-jaxrs-base</artifactId> |
| 64 | <version>2.9.2</version> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 68 | <artifactId>jackson-jaxrs-json-provider</artifactId> |
| 69 | <version>2.9.2</version> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 73 | <artifactId>jackson-jaxrs-providers</artifactId> |
| 74 | <version>2.9.2</version> |
| 75 | <type>pom</type> |
Rob Daugherty | 9f3f653 | 2018-03-16 12:00:44 -0400 | [diff] [blame] | 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.apache.httpcomponents</groupId> |
| 79 | <artifactId>httpclient</artifactId> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 80 | </dependency> |
dfilppi | a4c936a | 2017-08-03 21:26:02 +0000 | [diff] [blame] | 81 | </dependencies> |
| 82 | |
| 83 | </project> |