Set version to 1.13.0-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.0-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>1.1</version>
69     </dependency>
70     <dependency>
71       <groupId>org.apache.httpcomponents</groupId>
72       <artifactId>httpclient</artifactId>
73       <version>${http.client.version}</version>
74       <scope>provided</scope>
75       <exclusions>
76         <exclusion>
77           <groupId>org.apache.httpcomponents</groupId>
78           <artifactId>httpcore</artifactId>
79         </exclusion>
80       </exclusions>
81     </dependency>
82     <dependency>
83       <groupId>org.apache.httpcomponents</groupId>
84       <artifactId>httpcore</artifactId>
85       <version>${http.core.version}</version>
86       <scope>provided</scope>
87     </dependency>
88     <dependency>
89       <groupId>javax.ws.rs</groupId>
90       <artifactId>javax.ws.rs-api</artifactId>
91       <scope>provided</scope>
92     </dependency>
93     <dependency>
94       <groupId>com.datastax.cassandra</groupId>
95       <artifactId>cassandra-driver-core</artifactId>
96       <scope>test</scope>
97       <exclusions>
98         <exclusion>
99           <groupId>com.github.jnr</groupId>
100           <artifactId>jnr-posix</artifactId>
101         </exclusion>
102       </exclusions>
103     </dependency>
104     <dependency>
105       <groupId>org.projectlombok</groupId>
106       <artifactId>lombok</artifactId>
107       <version>${lombok.version}</version>
108     </dependency>
109   </dependencies>
110
111 </project>