Update version to 1.13.6-SNAPSHOT
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / item-rest / item-rest-services / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6
7     <parent>
8         <groupId>org.openecomp.sdc</groupId>
9         <artifactId>item-rest</artifactId>
10         <version>1.13.6-SNAPSHOT</version>
11     </parent>
12
13     <artifactId>item-rest-services</artifactId>
14
15     <dependencies>
16         <dependency>
17             <groupId>org.openecomp.sdc</groupId>
18             <artifactId>openecomp-sdc-item-permissions-manager</artifactId>
19             <version>${project.version}</version>
20         </dependency>
21         <dependency>
22             <groupId>org.openecomp.sdc</groupId>
23             <artifactId>item-rest-types</artifactId>
24             <version>${project.version}</version>
25         </dependency>
26         <dependency>
27             <groupId>org.openecomp.sdc</groupId>
28             <artifactId>openecomp-sdc-common-rest</artifactId>
29             <version>${project.version}</version>
30         </dependency>
31         <dependency>
32             <groupId>org.apache.httpcomponents.client5</groupId>
33             <artifactId>httpclient5</artifactId>
34             <version>${http.client.version}</version>
35             <exclusions>
36                 <exclusion>
37                     <groupId>org.apache.httpcomponents</groupId>
38                     <artifactId>httpcore</artifactId>
39                 </exclusion>
40             </exclusions>
41         </dependency>
42         <dependency>
43             <groupId>javax.inject</groupId>
44             <artifactId>javax.inject</artifactId>
45             <version>1</version>
46         </dependency>
47         <!-- CXF -->
48         <dependency>
49             <groupId>org.apache.cxf</groupId>
50             <artifactId>cxf-rt-frontend-jaxrs</artifactId>
51             <version>${cxf.version}</version>
52             <exclusions>
53                 <exclusion>
54                     <groupId>org.jboss.spec.javax.rmi</groupId>
55                     <artifactId>jboss-rmi-api_1.0_spec</artifactId>
56                 </exclusion>
57             </exclusions>
58         </dependency>
59         <dependency>
60             <groupId>org.openecomp.sdc</groupId>
61             <artifactId>openecomp-sdc-conflict-manager</artifactId>
62             <version>${project.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.springframework</groupId>
66             <artifactId>spring-context</artifactId>
67             <exclusions>
68                 <exclusion>
69                     <groupId>org.springframework</groupId>
70                     <artifactId>spring-expression</artifactId>
71                 </exclusion>
72                 <exclusion>
73                     <groupId>org.springframework</groupId>
74                     <artifactId>spring-core</artifactId>
75                 </exclusion>
76             </exclusions>
77         </dependency>
78         <dependency>
79             <groupId>com.fasterxml.jackson.core</groupId>
80             <artifactId>jackson-core</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>com.github.tomakehurst</groupId>
84             <artifactId>wiremock-standalone</artifactId>
85             <version>${wire-mock.version}</version>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.projectlombok</groupId>
90             <artifactId>lombok</artifactId>
91             <scope>provided</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.openecomp.sdc.be</groupId>
95             <artifactId>common-be</artifactId>
96             <version>${project.version}</version>
97             <scope>compile</scope>
98             <exclusions>
99                 <exclusion>
100                     <groupId>org.springframework</groupId>
101                     <artifactId>spring-core</artifactId>
102                 </exclusion>
103                 <exclusion>
104                     <groupId>org.eclipse.jetty</groupId>
105                     <artifactId>jetty-server</artifactId>
106                 </exclusion>
107                 <exclusion>
108                     <groupId>org.eclipse.jetty</groupId>
109                     <artifactId>jetty-servlet</artifactId>
110                 </exclusion>
111             </exclusions>
112         </dependency>
113     </dependencies>
114
115 </project>