Update version to 1.13.6-SNAPSHOT
[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.13.6-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       <exclusions>
26         <exclusion>
27           <groupId>org.eclipse.jetty</groupId>
28           <artifactId>jetty-server</artifactId>
29         </exclusion>
30         <exclusion>
31           <groupId>org.eclipse.jetty</groupId>
32           <artifactId>jetty-servlet</artifactId>
33         </exclusion>
34       </exclusions>
35     </dependency>
36     <dependency>
37       <groupId>com.fasterxml.jackson.jaxrs</groupId>
38       <artifactId>jackson-jaxrs-json-provider</artifactId>
39       <version>${jackson.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>com.fasterxml.jackson.core</groupId>
43       <artifactId>jackson-databind</artifactId>
44       <version>${jackson.version}</version>
45     </dependency>
46     <dependency>
47       <groupId>org.springframework</groupId>
48       <artifactId>spring-websocket</artifactId>
49       <version>${spring.framework.version}</version>
50       <exclusions>
51         <exclusion>
52           <groupId>org.springframework</groupId>
53           <artifactId>spring-web</artifactId>
54         </exclusion>
55         <exclusion>
56           <groupId>org.springframework</groupId>
57           <artifactId>spring-core</artifactId>
58         </exclusion>
59       </exclusions>
60     </dependency>
61     <dependency>
62       <groupId>com.google.code.gson</groupId>
63       <artifactId>gson</artifactId>
64     </dependency>
65
66     <dependency>
67       <groupId>org.apache.httpcomponents.client5</groupId>
68       <artifactId>httpclient5</artifactId>
69       <version>${http.client.version}</version>
70       <scope>provided</scope>
71       <exclusions>
72         <exclusion>
73           <groupId>org.apache.httpcomponents</groupId>
74           <artifactId>httpcore</artifactId>
75         </exclusion>
76       </exclusions>
77     </dependency>
78     <dependency>
79       <groupId>org.apache.httpcomponents</groupId>
80       <artifactId>httpcore</artifactId>
81       <version>${http.core.version}</version>
82       <scope>provided</scope>
83     </dependency>
84     <dependency>
85       <groupId>jakarta.ws.rs</groupId>
86       <artifactId>jakarta.ws.rs-api</artifactId>
87       <scope>provided</scope>
88     </dependency>
89     <dependency>
90       <groupId>com.datastax.cassandra</groupId>
91       <artifactId>cassandra-driver-core</artifactId>
92       <scope>test</scope>
93       <exclusions>
94         <exclusion>
95           <groupId>com.github.jnr</groupId>
96           <artifactId>jnr-posix</artifactId>
97         </exclusion>
98       </exclusions>
99     </dependency>
100     <dependency>
101       <groupId>org.projectlombok</groupId>
102       <artifactId>lombok</artifactId>
103       <version>${lombok.version}</version>
104     </dependency>
105   </dependencies>
106
107 </project>