blob: a5979798d296095bc54fc5ab49ba54e132fffaec [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"
3 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>
6
7 <parent>
8 <groupId>org.openecomp.sdc</groupId>
9 <artifactId>application-config-rest</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 </parent>
12
13 <artifactId>application-config-rest-services</artifactId>
14 <!--packaging>pom</packaging-->
15
16 <dependencies>
17
18 <dependency>
19 <groupId>io.swagger</groupId>
20 <artifactId>swagger-annotations</artifactId>
21 <version>1.5.3</version>
22 </dependency>
23 <dependency>
24 <groupId>javax.ws.rs</groupId>
25 <artifactId>javax.ws.rs-api</artifactId>
26 <version>${ws.rs.version}</version>
27 </dependency>
28 <dependency>
29 <groupId>org.springframework</groupId>
30 <artifactId>spring-context</artifactId>
31 <version>${spring.framework.version}</version>
32 </dependency>
33 <dependency>
34 <groupId>javax.inject</groupId>
35 <artifactId>javax.inject</artifactId>
36 <version>1</version>
37 </dependency>
38 <dependency>
39 <groupId>org.openecomp.sdc</groupId>
40 <artifactId>openecomp-sdc-application-config-manager</artifactId>
41 <version>${project.version}</version>
42 </dependency>
43 <dependency>
44 <groupId>org.openecomp.sdc</groupId>
45 <artifactId>application-config-rest-types</artifactId>
46 <version>${project.version}</version>
47 </dependency>
48 <dependency>
49 <groupId>org.openecomp.sdc</groupId>
50 <artifactId>openecomp-sdc-common-rest</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53 <!-- CXF -->
54 <dependency>
55 <groupId>org.apache.cxf</groupId>
56 <artifactId>cxf-rt-frontend-jaxrs</artifactId>
57 <version>${cxf.version}</version>
58 </dependency>
59 </dependencies>
60
61
62</project>