blob: 8336672b3f27f1046db8c04328d9763d5a14f1a6 [file] [log] [blame]
Vodafone84a20982019-03-18 15:08:33 +05301<?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"
vasraza36531c2020-04-29 18:39:35 +010019 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>
Vodafone84a20982019-03-18 15:08:33 +053022
vasraza36531c2020-04-29 18:39:35 +010023 <artifactId>externaltesting-rest-services</artifactId>
24 <parent>
25 <groupId>org.openecomp.sdc.onboarding</groupId>
26 <artifactId>externaltesting-rest</artifactId>
MichaelMorris53aed702021-09-28 16:08:53 +010027 <version>1.10.0-SNAPSHOT</version>
vasraza36531c2020-04-29 18:39:35 +010028 </parent>
Vodafone84a20982019-03-18 15:08:33 +053029
vasraza36531c2020-04-29 18:39:35 +010030 <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>
vasraz8dbc7322021-06-26 14:23:12 +010040 <exclusions>
41 <exclusion>
42 <groupId>org.springframework</groupId>
43 <artifactId>spring-expression</artifactId>
44 </exclusion>
45 <exclusion>
46 <groupId>org.springframework</groupId>
47 <artifactId>spring-core</artifactId>
48 </exclusion>
49 </exclusions>
vasraza36531c2020-04-29 18:39:35 +010050 </dependency>
51 <dependency>
52 <groupId>org.springframework</groupId>
53 <artifactId>spring-context-support</artifactId>
54 <version>${spring.framework.version}</version>
55 </dependency>
56 <dependency>
57 <groupId>org.springframework</groupId>
58 <artifactId>spring-web</artifactId>
59 <version>${spring.framework.version}</version>
vasraz8dbc7322021-06-26 14:23:12 +010060 <exclusions>
61 <exclusion>
62 <groupId>org.springframework</groupId>
63 <artifactId>spring-core</artifactId>
64 </exclusion>
65 </exclusions>
vasraza36531c2020-04-29 18:39:35 +010066 </dependency>
67 <dependency>
68 <groupId>org.springframework</groupId>
69 <artifactId>spring-beans</artifactId>
70 <version>${spring.framework.version}</version>
71 </dependency>
Vodafone84a20982019-03-18 15:08:33 +053072
vasraza36531c2020-04-29 18:39:35 +010073 <!-- CXF -->
74 <dependency>
75 <groupId>org.apache.cxf</groupId>
76 <artifactId>cxf-rt-frontend-jaxrs</artifactId>
77 <version>${cxf.version}</version>
sebdetfe50eeb2020-09-16 11:42:49 +020078 <exclusions>
79 <exclusion>
80 <groupId>org.jboss.spec.javax.rmi</groupId>
81 <artifactId>jboss-rmi-api_1.0_spec</artifactId>
82 </exclusion>
83 </exclusions>
vasraza36531c2020-04-29 18:39:35 +010084 </dependency>
85 <dependency>
86 <groupId>org.apache.httpcomponents</groupId>
87 <artifactId>httpclient</artifactId>
88 <version>${http.client.version}</version>
89 </dependency>
90 <dependency>
91 <groupId>javax.inject</groupId>
92 <artifactId>javax.inject</artifactId>
93 <version>${javax.inject.version}</version>
94 <scope>provided</scope>
95 </dependency>
96 <dependency>
97 <groupId>javax.ws.rs</groupId>
98 <artifactId>javax.ws.rs-api</artifactId>
99 <version>${ws.rs.version}</version>
100 </dependency>
101 <dependency>
102 <groupId>com.sun.jersey</groupId>
103 <artifactId>jersey-core</artifactId>
104 <version>${jersey.core.version}</version>
105 <exclusions>
106 <exclusion>
107 <groupId>javax.ws.rs</groupId>
108 <artifactId>jsr311-api</artifactId>
109 </exclusion>
110 </exclusions>
111 </dependency>
112 <dependency>
113 <groupId>io.swagger.core.v3</groupId>
114 <artifactId>swagger-annotations</artifactId>
115 <version>${swagger.version}</version>
116 </dependency>
117 <dependency>
118 <groupId>com.fasterxml.jackson.core</groupId>
119 <artifactId>jackson-annotations</artifactId>
120 <version>${jackson.annotations.version}</version>
121 </dependency>
122 <dependency>
123 <groupId>com.fasterxml.jackson.dataformat</groupId>
124 <artifactId>jackson-dataformat-xml</artifactId>
125 <version>${jackson.dataformat.version}</version>
126 </dependency>
127 <dependency>
128 <groupId>org.codehaus.woodstox</groupId>
129 <artifactId>woodstox-core-asl</artifactId>
130 <version>${woodstox.version}</version>
131 </dependency>
132 <dependency>
133 <groupId>org.openecomp.sdc</groupId>
134 <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId>
135 <version>${project.version}</version>
vasraz8dbc7322021-06-26 14:23:12 +0100136 <exclusions>
137 <exclusion>
138 <groupId>org.springframework</groupId>
139 <artifactId>spring-core</artifactId>
140 </exclusion>
141 </exclusions>
vasraza36531c2020-04-29 18:39:35 +0100142 </dependency>
143 <dependency>
144 <groupId>com.sun.jersey.contribs</groupId>
145 <artifactId>jersey-multipart</artifactId>
146 <version>${jersey.multipart.version}</version>
147 <scope>provided</scope>
148 </dependency>
149 <dependency>
150 <groupId>org.openecomp.sdc</groupId>
151 <artifactId>openecomp-sdc-common-rest</artifactId>
152 <version>${project.version}</version>
153 </dependency>
154 <dependency>
vasraza36531c2020-04-29 18:39:35 +0100155 <groupId>org.openecomp.sdc</groupId>
156 <artifactId>openecomp-sdc-externaltesting-impl</artifactId>
157 <version>${project.version}</version>
158 </dependency>
159 <dependency>
160 <groupId>javax.servlet</groupId>
161 <artifactId>javax.servlet-api</artifactId>
162 <scope>provided</scope>
163 </dependency>
164 <dependency>
165 <groupId>com.sun.activation</groupId>
166 <artifactId>javax.activation</artifactId>
167 <version>1.2.0</version>
168 </dependency>
Arindam Mondal0346c882020-04-13 16:35:14 +0900169
vasraza36531c2020-04-29 18:39:35 +0100170 </dependencies>
Vodafone84a20982019-03-18 15:08:33 +0530171
172</project>