blob: ea7eed462721fbfaa8a7a729f23171f69e5e1b7d [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
AviZi280f8012017-06-09 02:39:56 +03007 <artifactId>action-library-rest-services</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +02008 <parent>
9 <groupId>org.openecomp.sdc.onboarding</groupId>
10 <artifactId>action-library-rest</artifactId>
Michael Landod8a0dea2018-06-02 19:23:27 +030011 <version>1.3.0-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020012 </parent>
13
Michael Landof5f13c42017-02-19 12:35:04 +020014
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>
Michael Landof5f13c42017-02-19 12:35:04 +020059 <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>
Michael Landoa1e17762018-05-21 16:57:56 +030067 <version>${http.core.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020068 </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>
Michael Landof5f13c42017-02-19 12:35:04 +020075 <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>
AviZi280f8012017-06-09 02:39:56 +030092 <groupId>org.openecomp.sdc</groupId>
93 <artifactId>openecomp-sdc-logging-api</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +020094 <version>${project.version}</version>
95 </dependency>
AviZi280f8012017-06-09 02:39:56 +030096 <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>
vempod6d12912018-07-09 14:27:57 +0300107 <dependency>
108 <groupId>javax.servlet</groupId>
109 <artifactId>javax.servlet-api</artifactId>
110 <version>${servlet-api.version}</version>
111 <scope>provided</scope>
112 </dependency>
mojahidi3cccf9a2018-10-22 16:24:48 +0530113 <dependency>
114 <groupId>junit</groupId>
115 <artifactId>junit</artifactId>
116 <scope>test</scope>
117 </dependency>
118
Michael Landof5f13c42017-02-19 12:35:04 +0200119 </dependencies>
120
AviZi280f8012017-06-09 02:39:56 +0300121</project>