blob: d261f46f18dea7138c415a28949051c16bcfda04 [file] [log] [blame]
Michael Landof5f13c42017-02-19 12:35:04 +02001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
ys969316a9fce2020-01-19 13:50:02 +02003 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
Michael Landof5f13c42017-02-19 12:35:04 +02006
ys969316a9fce2020-01-19 13:50:02 +02007 <artifactId>application-config-rest-services</artifactId>
AviZi280f8012017-06-09 02:39:56 +03008
ys969316a9fce2020-01-19 13:50:02 +02009 <parent>
10 <groupId>org.openecomp.sdc</groupId>
11 <artifactId>application-config-rest</artifactId>
Ofir Sonsino09d87892020-03-12 20:52:42 +020012 <version>1.7.0-SNAPSHOT</version>
ys969316a9fce2020-01-19 13:50:02 +020013 </parent>
Michael Landof5f13c42017-02-19 12:35:04 +020014
aribeiro6909f0c2020-05-27 11:37:44 +010015 <properties>
16 <jersey-common.version>2.22.2</jersey-common.version>
17 </properties>
18
ys969316a9fce2020-01-19 13:50:02 +020019 <dependencies>
aribeiro6909f0c2020-05-27 11:37:44 +010020
ys969316a9fce2020-01-19 13:50:02 +020021 <dependency>
22 <groupId>io.swagger.core.v3</groupId>
23 <artifactId>swagger-annotations</artifactId>
24 <version>${swagger.version}</version>
25 </dependency>
26 <dependency>
27 <groupId>javax.ws.rs</groupId>
28 <artifactId>javax.ws.rs-api</artifactId>
29 <version>${ws.rs.version}</version>
30 </dependency>
31 <dependency>
32 <groupId>org.springframework</groupId>
33 <artifactId>spring-context</artifactId>
34 <version>${spring.framework.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>javax.inject</groupId>
38 <artifactId>javax.inject</artifactId>
39 <version>${javax.inject.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.openecomp.sdc</groupId>
43 <artifactId>openecomp-sdc-application-config-manager</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.openecomp.sdc</groupId>
48 <artifactId>application-config-rest-types</artifactId>
49 <version>${project.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>org.openecomp.sdc</groupId>
53 <artifactId>openecomp-sdc-common-rest</artifactId>
54 <version>${project.version}</version>
55 </dependency>
56 <!-- CXF -->
57 <dependency>
58 <groupId>org.apache.cxf</groupId>
59 <artifactId>cxf-rt-frontend-jaxrs</artifactId>
60 <version>${cxf.version}</version>
61 </dependency>
62 <dependency>
ys969316a9fce2020-01-19 13:50:02 +020063 <groupId>org.springframework</groupId>
64 <artifactId>spring-web</artifactId>
65 <scope>test</scope>
66 <version>${spring.framework.version}</version>
67 </dependency>
68 <dependency>
69 <groupId>org.glassfish.jersey.core</groupId>
70 <artifactId>jersey-common</artifactId>
aribeiro6909f0c2020-05-27 11:37:44 +010071 <version>${jersey-common.version}</version>
ys969316a9fce2020-01-19 13:50:02 +020072 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>org.glassfish.jersey.core</groupId>
76 <artifactId>jersey-server</artifactId>
aribeiro6909f0c2020-05-27 11:37:44 +010077 <version>${jersey-common.version}</version>
ys969316a9fce2020-01-19 13:50:02 +020078 <scope>test</scope>
79 </dependency>
80 </dependencies>
81
AviZi280f8012017-06-09 02:39:56 +030082</project>