Fix vulnerable dependency
[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.10.0-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</groupId>
33       <artifactId>httpclient</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   </dependencies>
94
95 </project>