Bump SDC version 1.6.0
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / action-library-rest / action-library-rest-services / pom.xml
1 <?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     <artifactId>action-library-rest-services</artifactId>
8     <parent>
9         <groupId>org.openecomp.sdc.onboarding</groupId>
10         <artifactId>action-library-rest</artifactId>
11         <version>1.6.0-SNAPSHOT</version>
12     </parent>
13
14
15     <properties>
16         <errorcode.dir>${project.build.directory}/generated-sources/error-codes</errorcode.dir>
17     </properties>
18
19     <dependencies>
20         <dependency>
21             <groupId>${project.groupId}</groupId>
22             <artifactId>action-library-rest-types</artifactId>
23             <version>${project.version}</version>
24         </dependency>
25
26         <!-- Spring -->
27         <dependency>
28             <groupId>org.springframework</groupId>
29             <artifactId>spring-core</artifactId>
30             <version>${spring.framework.version}</version>
31         </dependency>
32         <dependency>
33             <groupId>org.springframework</groupId>
34             <artifactId>spring-context</artifactId>
35             <version>${spring.framework.version}</version>
36         </dependency>
37         <dependency>
38             <groupId>org.springframework</groupId>
39             <artifactId>spring-context-support</artifactId>
40             <version>${spring.framework.version}</version>
41         </dependency>
42         <dependency>
43             <groupId>org.springframework</groupId>
44             <artifactId>spring-web</artifactId>
45             <version>${spring.framework.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>org.springframework</groupId>
49             <artifactId>spring-beans</artifactId>
50             <version>${spring.framework.version}</version>
51         </dependency>
52
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         <dependency>
60             <groupId>org.apache.httpcomponents</groupId>
61             <artifactId>httpclient</artifactId>
62             <version>${http.client.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.apache.httpcomponents</groupId>
66             <artifactId>httpcore</artifactId>
67             <version>${http.core.version}</version>
68         </dependency>
69
70         <dependency>
71             <groupId>javax.ws.rs</groupId>
72             <artifactId>javax.ws.rs-api</artifactId>
73             <version>${ws.rs.version}</version>
74         </dependency>
75         <dependency>
76             <groupId>javax.inject</groupId>
77             <artifactId>javax.inject</artifactId>
78             <version>${javax.inject.version}</version>
79             <scope>provided</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.openecomp.sdc</groupId>
83             <artifactId>openecomp-sdc-action-manager</artifactId>
84             <version>${project.version}</version>
85         </dependency>
86         <dependency>
87             <groupId>org.openecomp.sdc</groupId>
88             <artifactId>openecomp-sdc-action-api</artifactId>
89             <version>${project.version}</version>
90         </dependency>
91         <dependency>
92             <groupId>org.openecomp.sdc</groupId>
93             <artifactId>openecomp-sdc-logging-api</artifactId>
94             <version>${project.version}</version>
95         </dependency>
96         <dependency>
97             <groupId>org.slf4j</groupId>
98             <artifactId>slf4j-api</artifactId>
99             <version>${slf4j.version}</version>
100         </dependency>
101         <dependency>
102             <groupId>com.sun.jersey.contribs</groupId>
103             <artifactId>jersey-multipart</artifactId>
104             <version>${jersey.multipart.version}</version>
105             <scope>provided</scope>
106         </dependency>
107         <dependency>
108             <groupId>javax.servlet</groupId>
109             <artifactId>javax.servlet-api</artifactId>
110             <version>${servlet-api.version}</version>
111             <scope>provided</scope>
112         </dependency>
113         <dependency>
114             <groupId>junit</groupId>
115             <artifactId>junit</artifactId>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.mockito</groupId>
120             <artifactId>mockito-core</artifactId>
121             <scope>test</scope>
122         </dependency>
123
124     </dependencies>
125
126 </project>