Upgrade springframework to latest version (5.3.8)
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / vendor-license-rest / vendor-license-rest-services / pom.xml
1 <!--
2   ~ Copyright © 2016-2018 European Support Limited
3   ~
4   ~ Licensed under the Apache License, Version 2.0 (the "License");
5   ~ you may not use this file except in compliance with the License.
6   ~ You may obtain a copy of the License at
7   ~
8   ~      http://www.apache.org/licenses/LICENSE-2.0
9   ~
10   ~ Unless required by applicable law or agreed to in writing, software
11   ~ distributed under the License is distributed on an "AS IS" BASIS,
12   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   ~ See the License for the specific language governing permissions and
14   ~ limitations under the License.
15   -->
16
17 <project xmlns="http://maven.apache.org/POM/4.0.0"
18   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20   <modelVersion>4.0.0</modelVersion>
21
22   <artifactId>vendor-license-rest-services</artifactId>
23   <name>vendor-license-rest-services</name>
24
25   <parent>
26     <groupId>org.openecomp.sdc.onboarding</groupId>
27     <artifactId>vendor-license-rest</artifactId>
28     <version>1.9.0-SNAPSHOT</version>
29   </parent>
30
31   <properties>
32     <errorcode.dir>${project.build.directory}/generated-sources/error-codes</errorcode.dir>
33   </properties>
34
35   <dependencies>
36     <dependency>
37       <groupId>${project.groupId}</groupId>
38       <artifactId>vendor-license-rest-types</artifactId>
39       <version>${project.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>org.openecomp.sdc</groupId>
43       <artifactId>openecomp-sdc-vendor-license-api</artifactId>
44       <version>${project.version}</version>
45     </dependency>
46     <dependency>
47       <groupId>org.openecomp.sdc</groupId>
48       <artifactId>openecomp-sdc-item-permissions-manager</artifactId>
49       <version>${project.version}</version>
50     </dependency>
51
52     <!-- CXF -->
53     <dependency>
54       <groupId>org.apache.cxf</groupId>
55       <artifactId>cxf-rt-frontend-jaxrs</artifactId>
56       <version>${cxf.version}</version>
57       <exclusions>
58         <exclusion>
59           <groupId>org.jboss.spec.javax.rmi</groupId>
60           <artifactId>jboss-rmi-api_1.0_spec</artifactId>
61         </exclusion>
62       </exclusions>
63     </dependency>
64     <dependency>
65       <groupId>org.apache.httpcomponents</groupId>
66       <artifactId>httpclient</artifactId>
67       <version>${http.client.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>org.apache.httpcomponents</groupId>
71       <artifactId>httpcore</artifactId>
72       <version>${http.core.version}</version>
73     </dependency>
74
75     <!-- Java Stuff -->
76     <dependency>
77       <groupId>javax.inject</groupId>
78       <artifactId>javax.inject</artifactId>
79       <version>${javax.inject.version}</version>
80       <scope>provided</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.openecomp.sdc</groupId>
84       <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId>
85       <version>${project.version}</version>
86       <exclusions>
87         <exclusion>
88           <groupId>org.springframework</groupId>
89           <artifactId>spring-core</artifactId>
90         </exclusion>
91       </exclusions>
92     </dependency>
93     <dependency>
94       <groupId>org.openecomp.sdc</groupId>
95       <artifactId>item-rest-services</artifactId>
96       <version>${project.version}</version>
97     </dependency>
98     <dependency>
99       <groupId>org.openecomp.sdc</groupId>
100       <artifactId>unique-type-rest-types</artifactId>
101       <version>${project.version}</version>
102     </dependency>
103   </dependencies>
104 </project>