blob: 4f562648463cbbd7b6bf215a6bd14e2eed7d131e [file] [log] [blame]
talig8e9c0652017-12-20 14:30:43 +02001<project xmlns="http://maven.apache.org/POM/4.0.0"
vasraza36531c2020-04-29 18:39:35 +01002 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>
talig8e9c0652017-12-20 14:30:43 +02005
vasraza36531c2020-04-29 18:39:35 +01006 <name>openecomp-sdc-notification-worker</name>
7 <artifactId>openecomp-sdc-notification-worker</artifactId>
talig8e9c0652017-12-20 14:30:43 +02008
vasraza36531c2020-04-29 18:39:35 +01009 <parent>
10 <groupId>org.openecomp.sdc</groupId>
JulienBeb485c372020-10-28 11:50:25 -040011 <artifactId>openecomp-sdc-notification-lib</artifactId>
ChrisC00acf3d2021-03-22 13:54:06 +010012 <version>1.9.0-SNAPSHOT</version>
vasraza36531c2020-04-29 18:39:35 +010013 </parent>
talig8e9c0652017-12-20 14:30:43 +020014
vasraza36531c2020-04-29 18:39:35 +010015 <dependencies>
16 <dependency>
17 <groupId>org.openecomp.sdc.core</groupId>
sebdet3fdd8002021-06-04 17:49:31 +020018 <artifactId>openecomp-common-lib</artifactId>
19 <version>${project.version}</version>
20 </dependency>
21 <dependency>
22 <groupId>org.openecomp.sdc.core</groupId>
vasraza36531c2020-04-29 18:39:35 +010023 <artifactId>openecomp-utilities-lib</artifactId>
24 <version>${project.version}</version>
25 </dependency>
26 <dependency>
amohamadc16117e2020-07-19 22:17:57 -040027 <groupId>com.fasterxml.jackson.jaxrs</groupId>
28 <artifactId>jackson-jaxrs-json-provider</artifactId>
29 <version>${jackson.version}</version>
vasraza36531c2020-04-29 18:39:35 +010030 </dependency>
31 <dependency>
amohamadc16117e2020-07-19 22:17:57 -040032 <groupId>com.fasterxml.jackson.core</groupId>
33 <artifactId>jackson-databind</artifactId>
34 <version>${jackson.version}</version>
vasraza36531c2020-04-29 18:39:35 +010035 </dependency>
36 <dependency>
37 <groupId>org.springframework</groupId>
38 <artifactId>spring-websocket</artifactId>
39 <version>${spring.framework.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>com.google.code.gson</groupId>
43 <artifactId>gson</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>com.googlecode.json-simple</groupId>
47 <artifactId>json-simple</artifactId>
48 <version>1.1</version>
49 </dependency>
50 <dependency>
51 <groupId>org.apache.httpcomponents</groupId>
52 <artifactId>httpclient</artifactId>
53 <version>${http.client.version}</version>
54 <scope>provided</scope>
55 </dependency>
56 <dependency>
57 <groupId>org.apache.httpcomponents</groupId>
58 <artifactId>httpcore</artifactId>
59 <version>${http.core.version}</version>
60 <scope>provided</scope>
61 </dependency>
62 <dependency>
63 <groupId>javax.ws.rs</groupId>
64 <artifactId>javax.ws.rs-api</artifactId>
65 <scope>provided</scope>
66 </dependency>
67 <dependency>
68 <groupId>com.datastax.cassandra</groupId>
69 <artifactId>cassandra-driver-core</artifactId>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.projectlombok</groupId>
74 <artifactId>lombok</artifactId>
75 <version>${lombok.version}</version>
76 </dependency>
77 </dependencies>
talig8e9c0652017-12-20 14:30:43 +020078
79</project>