Update version to 1.13.6-SNAPSHOT
[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.13.6-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.client5</groupId>
66       <artifactId>httpclient5</artifactId>
67       <version>${http.client.version}</version>
68       <exclusions>
69         <exclusion>
70           <groupId>org.apache.httpcomponents</groupId>
71           <artifactId>httpcore</artifactId>
72         </exclusion>
73       </exclusions>
74     </dependency>
75     <dependency>
76       <groupId>org.apache.httpcomponents</groupId>
77       <artifactId>httpcore</artifactId>
78       <version>${http.core.version}</version>
79     </dependency>
80
81     <!-- Java Stuff -->
82     <dependency>
83       <groupId>javax.inject</groupId>
84       <artifactId>javax.inject</artifactId>
85       <version>${javax.inject.version}</version>
86       <scope>provided</scope>
87     </dependency>
88     <dependency>
89       <groupId>org.openecomp.sdc</groupId>
90       <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId>
91       <version>${project.version}</version>
92       <exclusions>
93         <exclusion>
94           <groupId>org.springframework</groupId>
95           <artifactId>spring-core</artifactId>
96         </exclusion>
97       </exclusions>
98     </dependency>
99     <dependency>
100       <groupId>org.openecomp.sdc</groupId>
101       <artifactId>item-rest-services</artifactId>
102       <version>${project.version}</version>
103     </dependency>
104     <dependency>
105       <groupId>org.openecomp.sdc</groupId>
106       <artifactId>unique-type-rest-types</artifactId>
107       <version>${project.version}</version>
108     </dependency>
109   </dependencies>
110 </project>