blob: e0f766201c3b7d877a725e655512762a37ce0381 [file] [log] [blame]
Michael Landof5f13c42017-02-19 12:35:04 +02001<?xml version="1.0" encoding="UTF-8"?>
vempocc628e42018-11-17 22:18:53 +02002<!--
3 ~ Copyright © 2016-2018 European Support Limited
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17
Michael Landof5f13c42017-02-19 12:35:04 +020018<project xmlns="http://maven.apache.org/POM/4.0.0"
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21 <modelVersion>4.0.0</modelVersion>
22
AviZi280f8012017-06-09 02:39:56 +030023 <artifactId>validation-rest-services</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +020024 <parent>
25 <groupId>org.openecomp.sdc.onboarding</groupId>
26 <artifactId>validation-rest</artifactId>
Michael Landob5fc68f2018-11-15 13:36:12 +020027 <version>1.4.0-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020028 </parent>
29
Michael Landof5f13c42017-02-19 12:35:04 +020030 <dependencies>
vempocc628e42018-11-17 22:18:53 +020031 <dependency>
32 <groupId>org.springframework</groupId>
33 <artifactId>spring-core</artifactId>
34 <version>${spring.framework.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>org.springframework</groupId>
38 <artifactId>spring-context</artifactId>
39 <version>${spring.framework.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.springframework</groupId>
43 <artifactId>spring-context-support</artifactId>
44 <version>${spring.framework.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.springframework</groupId>
48 <artifactId>spring-web</artifactId>
49 <version>${spring.framework.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>org.springframework</groupId>
53 <artifactId>spring-beans</artifactId>
54 <version>${spring.framework.version}</version>
55 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020056
vempocc628e42018-11-17 22:18:53 +020057 <!-- CXF -->
58 <dependency>
59 <groupId>org.apache.cxf</groupId>
60 <artifactId>cxf-rt-frontend-jaxrs</artifactId>
61 <version>${cxf.version}</version>
62 </dependency>
63 <dependency>
64 <groupId>org.apache.httpcomponents</groupId>
65 <artifactId>httpclient</artifactId>
66 <version>${http.client.version}</version>
67 </dependency>
68 <dependency>
69 <groupId>javax.inject</groupId>
70 <artifactId>javax.inject</artifactId>
71 <version>${javax.inject.version}</version>
72 <scope>provided</scope>
73 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020074 <dependency>
75 <groupId>javax.ws.rs</groupId>
76 <artifactId>javax.ws.rs-api</artifactId>
77 <version>${ws.rs.version}</version>
78 </dependency>
79 <dependency>
80 <groupId>com.sun.jersey</groupId>
81 <artifactId>jersey-core</artifactId>
AviZi280f8012017-06-09 02:39:56 +030082 <version>${jersey.core.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020083 <exclusions>
84 <exclusion>
85 <groupId>javax.ws.rs</groupId>
86 <artifactId>jsr311-api</artifactId>
87 </exclusion>
88 </exclusions>
89 </dependency>
90 <dependency>
91 <groupId>io.swagger</groupId>
92 <artifactId>swagger-annotations</artifactId>
AviZi280f8012017-06-09 02:39:56 +030093 <version>${swagger.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020094 </dependency>
95 <dependency>
96 <groupId>org.openecomp.sdc.onboarding</groupId>
97 <artifactId>validation-rest-types</artifactId>
98 <version>${project.version}</version>
99 </dependency>
100 <dependency>
101 <groupId>com.fasterxml.jackson.core</groupId>
102 <artifactId>jackson-annotations</artifactId>
AviZi280f8012017-06-09 02:39:56 +0300103 <version>${jackson.annotations.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +0200104 </dependency>
105 <dependency>
106 <groupId>com.fasterxml.jackson.dataformat</groupId>
107 <artifactId>jackson-dataformat-xml</artifactId>
AviZi280f8012017-06-09 02:39:56 +0300108 <version>${jackson.dataformat.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +0200109 </dependency>
110 <dependency>
111 <groupId>org.codehaus.woodstox</groupId>
112 <artifactId>woodstox-core-asl</artifactId>
AviZi280f8012017-06-09 02:39:56 +0300113 <version>${woodstox.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +0200114 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +0200115 <dependency>
116 <groupId>org.openecomp.sdc</groupId>
117 <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId>
118 <version>${project.version}</version>
119 </dependency>
AviZi280f8012017-06-09 02:39:56 +0300120 <dependency>
121 <groupId>com.sun.jersey.contribs</groupId>
122 <artifactId>jersey-multipart</artifactId>
123 <version>${jersey.multipart.version}</version>
124 <scope>provided</scope>
125 </dependency>
vempocc628e42018-11-17 22:18:53 +0200126 <dependency>
127 <groupId>junit</groupId>
128 <artifactId>junit</artifactId>
129 <scope>test</scope>
130 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +0200131 </dependencies>
132
AviZi280f8012017-06-09 02:39:56 +0300133</project>