blob: e06e97dd09ffe6ac6e9623d487f6b0039c85dc47 [file] [log] [blame]
dfilppif9a5a022018-02-14 20:28:34 +00001<?xml version="1.0" encoding="UTF-8"?>
dfilppia4c936a2017-08-03 21:26:02 +00002<!--
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-->
dfilppia4c936a2017-08-03 21:26:02 +000021<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
dfilppi82abd582018-03-13 12:05:27 +000026 <groupId>org.onap.so</groupId>
dfilppia4c936a2017-08-03 21:26:02 +000027 <artifactId>aria-client</artifactId>
dfilppi349585b2018-03-09 20:34:30 +000028 <version>1.2.0-SNAPSHOT</version>
dfilppi349585b2018-03-09 20:34:30 +000029 <parent>
30 <groupId>org.onap.so</groupId>
31 <artifactId>aria</artifactId>
32 <version>1.2.0-SNAPSHOT</version>
33 <relativePath>../pom.xml</relativePath>
34 </parent>
dfilppia4c936a2017-08-03 21:26:02 +000035
36 <dependencies>
37 <dependency>
38 <groupId>org.glassfish.jersey.core</groupId>
39 <artifactId>jersey-client</artifactId>
40 <version>2.26-b03</version>
41 </dependency>
42 <dependency>
43 <groupId>org.glassfish.jersey.media</groupId>
44 <artifactId>jersey-media-json-jackson1</artifactId>
45 <version>2.26-b03</version>
46 </dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -040047 <dependency>
48 <groupId>com.fasterxml.jackson.core</groupId>
49 <artifactId>jackson-core</artifactId>
50 <version>2.8.7</version>
51 </dependency>
52 <dependency>
53 <groupId>com.fasterxml.jackson.core</groupId>
54 <artifactId>jackson-annotations</artifactId>
55 <version>2.8.7</version>
56 </dependency>
57 <dependency>
58 <groupId>com.fasterxml.jackson.core</groupId>
59 <artifactId>jackson-databind</artifactId>
60 <version>2.8.7</version>
61 </dependency>
62 <dependency>
63 <groupId>com.fasterxml.jackson.jaxrs</groupId>
64 <artifactId>jackson-jaxrs-base</artifactId>
65 <version>2.9.2</version>
66 </dependency>
67<dependency>
68 <groupId>com.fasterxml.jackson.jaxrs</groupId>
69 <artifactId>jackson-jaxrs-json-provider</artifactId>
70 <version>2.9.2</version>
71</dependency>
72 <dependency>
73 <groupId>com.fasterxml.jackson.jaxrs</groupId>
74 <artifactId>jackson-jaxrs-providers</artifactId>
75 <version>2.9.2</version>
76 <type>pom</type>
Rob Daugherty9f3f6532018-03-16 12:00:44 -040077 </dependency>
78 <dependency>
79 <groupId>org.apache.httpcomponents</groupId>
80 <artifactId>httpclient</artifactId>
Rob Daugherty38f72072018-03-14 02:07:32 -040081 </dependency>
dfilppia4c936a2017-08-03 21:26:02 +000082 </dependencies>
83
84</project>