Update version to 1.13.3
[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.3-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     <dependency>
66       <groupId>com.googlecode.json-simple</groupId>
67       <artifactId>json-simple</artifactId>
68       <version>${json-simple.version}</version>
69       <exclusions>
70         <exclusion>
71           <groupId>junit</groupId>
72           <artifactId>junit</artifactId>
73         </exclusion>
74       </exclusions>
75     </dependency>
76     <dependency>
77       <groupId>org.apache.httpcomponents.client5</groupId>
78       <artifactId>httpclient5</artifactId>
79       <version>${http.client.version}</version>
80       <scope>provided</scope>
81       <exclusions>
82         <exclusion>
83           <groupId>org.apache.httpcomponents</groupId>
84           <artifactId>httpcore</artifactId>
85         </exclusion>
86       </exclusions>
87     </dependency>
88     <dependency>
89       <groupId>org.apache.httpcomponents</groupId>
90       <artifactId>httpcore</artifactId>
91       <version>${http.core.version}</version>
92       <scope>provided</scope>
93     </dependency>
94     <dependency>
95       <groupId>jakarta.ws.rs</groupId>
96       <artifactId>jakarta.ws.rs-api</artifactId>
97       <scope>provided</scope>
98     </dependency>
99     <dependency>
100       <groupId>com.datastax.cassandra</groupId>
101       <artifactId>cassandra-driver-core</artifactId>
102       <scope>test</scope>
103       <exclusions>
104         <exclusion>
105           <groupId>com.github.jnr</groupId>
106           <artifactId>jnr-posix</artifactId>
107         </exclusion>
108       </exclusions>
109     </dependency>
110     <dependency>
111       <groupId>org.projectlombok</groupId>
112       <artifactId>lombok</artifactId>
113       <version>${lombok.version}</version>
114     </dependency>
115   </dependencies>
116
117 </project>