Remove vulnerable dependency
[sdc.git] / openecomp-be / lib / openecomp-sdc-notification-lib / openecomp-sdc-notification-worker / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5
6   <name>openecomp-sdc-notification-worker</name>
7   <artifactId>openecomp-sdc-notification-worker</artifactId>
8
9   <parent>
10     <groupId>org.openecomp.sdc</groupId>
11     <artifactId>openecomp-sdc-notification-lib</artifactId>
12     <version>1.11.8-SNAPSHOT</version>
13   </parent>
14
15   <dependencies>
16     <dependency>
17       <groupId>org.openecomp.sdc.core</groupId>
18       <artifactId>openecomp-common-lib</artifactId>
19       <version>${project.version}</version>
20     </dependency>
21     <dependency>
22       <groupId>org.openecomp.sdc.core</groupId>
23       <artifactId>openecomp-utilities-lib</artifactId>
24       <version>${project.version}</version>
25     </dependency>
26     <dependency>
27       <groupId>com.fasterxml.jackson.jaxrs</groupId>
28       <artifactId>jackson-jaxrs-json-provider</artifactId>
29       <version>${jackson.version}</version>
30     </dependency>
31     <dependency>
32       <groupId>com.fasterxml.jackson.core</groupId>
33       <artifactId>jackson-databind</artifactId>
34       <version>${jackson.version}</version>
35     </dependency>
36     <dependency>
37       <groupId>org.springframework</groupId>
38       <artifactId>spring-websocket</artifactId>
39       <version>${spring.framework.version}</version>
40       <exclusions>
41         <exclusion>
42           <groupId>org.springframework</groupId>
43           <artifactId>spring-web</artifactId>
44         </exclusion>
45         <exclusion>
46           <groupId>org.springframework</groupId>
47           <artifactId>spring-core</artifactId>
48         </exclusion>
49       </exclusions>
50     </dependency>
51     <dependency>
52       <groupId>com.google.code.gson</groupId>
53       <artifactId>gson</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>com.googlecode.json-simple</groupId>
57       <artifactId>json-simple</artifactId>
58       <version>1.1</version>
59     </dependency>
60     <dependency>
61       <groupId>org.apache.httpcomponents</groupId>
62       <artifactId>httpclient</artifactId>
63       <version>${http.client.version}</version>
64       <scope>provided</scope>
65       <exclusions>
66         <exclusion>
67           <groupId>org.apache.httpcomponents</groupId>
68           <artifactId>httpcore</artifactId>
69         </exclusion>
70       </exclusions>
71     </dependency>
72     <dependency>
73       <groupId>org.apache.httpcomponents</groupId>
74       <artifactId>httpcore</artifactId>
75       <version>${http.core.version}</version>
76       <scope>provided</scope>
77     </dependency>
78     <dependency>
79       <groupId>javax.ws.rs</groupId>
80       <artifactId>javax.ws.rs-api</artifactId>
81       <scope>provided</scope>
82     </dependency>
83     <dependency>
84       <groupId>com.datastax.cassandra</groupId>
85       <artifactId>cassandra-driver-core</artifactId>
86       <scope>test</scope>
87       <exclusions>
88         <exclusion>
89           <groupId>com.github.jnr</groupId>
90           <artifactId>jnr-posix</artifactId>
91         </exclusion>
92       </exclusions>
93     </dependency>
94     <dependency>
95       <groupId>org.projectlombok</groupId>
96       <artifactId>lombok</artifactId>
97       <version>${lombok.version}</version>
98     </dependency>
99   </dependencies>
100
101 </project>