Upgrade to 1.7.2
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / externaltesting-rest / externaltesting-rest-services / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright © 2019 iconectiv
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
18 <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
23   <artifactId>externaltesting-rest-services</artifactId>
24   <parent>
25     <groupId>org.openecomp.sdc.onboarding</groupId>
26     <artifactId>externaltesting-rest</artifactId>
27     <version>1.7.2</version>
28   </parent>
29
30   <dependencies>
31     <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>
56
57     <!-- CXF -->
58     <dependency>
59       <groupId>org.apache.cxf</groupId>
60       <artifactId>cxf-rt-frontend-jaxrs</artifactId>
61       <version>${cxf.version}</version>
62       <exclusions>
63         <exclusion>
64           <groupId>org.jboss.spec.javax.rmi</groupId>
65           <artifactId>jboss-rmi-api_1.0_spec</artifactId>
66         </exclusion>
67       </exclusions>
68     </dependency>
69     <dependency>
70       <groupId>org.apache.httpcomponents</groupId>
71       <artifactId>httpclient</artifactId>
72       <version>${http.client.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>javax.inject</groupId>
76       <artifactId>javax.inject</artifactId>
77       <version>${javax.inject.version}</version>
78       <scope>provided</scope>
79     </dependency>
80     <dependency>
81       <groupId>javax.ws.rs</groupId>
82       <artifactId>javax.ws.rs-api</artifactId>
83       <version>${ws.rs.version}</version>
84     </dependency>
85     <dependency>
86       <groupId>com.sun.jersey</groupId>
87       <artifactId>jersey-core</artifactId>
88       <version>${jersey.core.version}</version>
89       <exclusions>
90         <exclusion>
91           <groupId>javax.ws.rs</groupId>
92           <artifactId>jsr311-api</artifactId>
93         </exclusion>
94       </exclusions>
95     </dependency>
96     <dependency>
97       <groupId>io.swagger.core.v3</groupId>
98       <artifactId>swagger-annotations</artifactId>
99       <version>${swagger.version}</version>
100     </dependency>
101     <dependency>
102       <groupId>com.fasterxml.jackson.core</groupId>
103       <artifactId>jackson-annotations</artifactId>
104       <version>${jackson.annotations.version}</version>
105     </dependency>
106     <dependency>
107       <groupId>com.fasterxml.jackson.dataformat</groupId>
108       <artifactId>jackson-dataformat-xml</artifactId>
109       <version>${jackson.dataformat.version}</version>
110     </dependency>
111     <dependency>
112       <groupId>org.codehaus.woodstox</groupId>
113       <artifactId>woodstox-core-asl</artifactId>
114       <version>${woodstox.version}</version>
115     </dependency>
116     <dependency>
117       <groupId>org.openecomp.sdc</groupId>
118       <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId>
119       <version>${project.version}</version>
120     </dependency>
121     <dependency>
122       <groupId>com.sun.jersey.contribs</groupId>
123       <artifactId>jersey-multipart</artifactId>
124       <version>${jersey.multipart.version}</version>
125       <scope>provided</scope>
126     </dependency>
127     <dependency>
128       <groupId>org.openecomp.sdc</groupId>
129       <artifactId>openecomp-sdc-common-rest</artifactId>
130       <version>${project.version}</version>
131     </dependency>
132     <dependency>
133       <groupId>org.openecomp.sdc</groupId>
134       <artifactId>openecomp-sdc-externaltesting-impl</artifactId>
135       <version>${project.version}</version>
136     </dependency>
137     <dependency>
138       <groupId>javax.servlet</groupId>
139       <artifactId>javax.servlet-api</artifactId>
140       <scope>provided</scope>
141     </dependency>
142     <dependency>
143       <groupId>com.sun.activation</groupId>
144       <artifactId>javax.activation</artifactId>
145       <version>1.2.0</version>
146     </dependency>
147
148   </dependencies>
149
150 </project>