blob: c6d2b73adf6413b034ab62f0a27c9a65e8ac9342 [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>
29
30 <parent>
31 <groupId>org.onap.so</groupId>
32 <artifactId>aria</artifactId>
33 <version>1.2.0-SNAPSHOT</version>
34 <relativePath>../pom.xml</relativePath>
35 </parent>
dfilppia4c936a2017-08-03 21:26:02 +000036
37 <dependencies>
38 <dependency>
39 <groupId>org.glassfish.jersey.core</groupId>
40 <artifactId>jersey-client</artifactId>
41 <version>2.26-b03</version>
42 </dependency>
43 <dependency>
44 <groupId>org.glassfish.jersey.media</groupId>
45 <artifactId>jersey-media-json-jackson1</artifactId>
46 <version>2.26-b03</version>
47 </dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -040048 <dependency>
49 <groupId>com.fasterxml.jackson.core</groupId>
50 <artifactId>jackson-core</artifactId>
51 <version>2.8.7</version>
52 </dependency>
53 <dependency>
54 <groupId>com.fasterxml.jackson.core</groupId>
55 <artifactId>jackson-annotations</artifactId>
56 <version>2.8.7</version>
57 </dependency>
58 <dependency>
59 <groupId>com.fasterxml.jackson.core</groupId>
60 <artifactId>jackson-databind</artifactId>
61 <version>2.8.7</version>
62 </dependency>
63 <dependency>
64 <groupId>com.fasterxml.jackson.jaxrs</groupId>
65 <artifactId>jackson-jaxrs-base</artifactId>
66 <version>2.9.2</version>
67 </dependency>
68<dependency>
69 <groupId>com.fasterxml.jackson.jaxrs</groupId>
70 <artifactId>jackson-jaxrs-json-provider</artifactId>
71 <version>2.9.2</version>
72</dependency>
73 <dependency>
74 <groupId>com.fasterxml.jackson.jaxrs</groupId>
75 <artifactId>jackson-jaxrs-providers</artifactId>
76 <version>2.9.2</version>
77 <type>pom</type>
Rob Daugherty9f3f6532018-03-16 12:00:44 -040078 </dependency>
79 <dependency>
80 <groupId>org.apache.httpcomponents</groupId>
81 <artifactId>httpclient</artifactId>
Rob Daugherty38f72072018-03-14 02:07:32 -040082 </dependency>
dfilppia4c936a2017-08-03 21:26:02 +000083 </dependencies>
84
85</project>