blob: 8b473a4b7c696d5397f2342554ee8fe461241e38 [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 Landoebd7c8f2017-03-15 20:38:00 +020011 <version>1.1.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>
67 <version>${http.client.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
76 <!-- Other Stuff-->
AviZi280f8012017-06-09 02:39:56 +030077 <!--dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020078 <groupId>cglib</groupId>
79 <artifactId>cglib-nodep</artifactId>
80 <version>${cglib.nodep.version}</version>
81 <scope>runtime</scope>
AviZi280f8012017-06-09 02:39:56 +030082 </dependency-->
Michael Landof5f13c42017-02-19 12:35:04 +020083
84 <!-- Java Stuff -->
85 <dependency>
86 <groupId>javax.inject</groupId>
87 <artifactId>javax.inject</artifactId>
88 <version>${javax.inject.version}</version>
89 <scope>provided</scope>
90 </dependency>
91 <dependency>
92 <groupId>org.openecomp.sdc</groupId>
93 <artifactId>openecomp-sdc-action-manager</artifactId>
94 <version>${project.version}</version>
95 </dependency>
96 <dependency>
97 <groupId>org.openecomp.sdc</groupId>
98 <artifactId>openecomp-sdc-action-api</artifactId>
99 <version>${project.version}</version>
100 </dependency>
101 <dependency>
AviZi280f8012017-06-09 02:39:56 +0300102 <groupId>org.openecomp.sdc</groupId>
103 <artifactId>openecomp-sdc-logging-api</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +0200104 <version>${project.version}</version>
105 </dependency>
AviZi280f8012017-06-09 02:39:56 +0300106 <dependency>
107 <groupId>org.slf4j</groupId>
108 <artifactId>slf4j-api</artifactId>
109 <version>${slf4j.version}</version>
110 </dependency>
111 <dependency>
112 <groupId>com.sun.jersey.contribs</groupId>
113 <artifactId>jersey-multipart</artifactId>
114 <version>${jersey.multipart.version}</version>
115 <scope>provided</scope>
116 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +0200117 </dependencies>
118
Michael Landof5f13c42017-02-19 12:35:04 +0200119 <build>
120 <plugins>
121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-surefire-plugin</artifactId>
124 <configuration>
125 <includes>
126 <include>test/core/unittest/offline/**</include>
127 </includes>
128 <skipTests>true</skipTests>
129 </configuration>
130 </plugin>
AviZi280f8012017-06-09 02:39:56 +0300131 <!-- Error codes generator plugin -->
132 <!--plugin>
133 <groupId>org.openecomp.nfv.tools</groupId>
134 <artifactId>error-codes-maven-plugin</artifactId>
135 </plugin-->
Michael Landof5f13c42017-02-19 12:35:04 +0200136 </plugins>
137 </build>
138
139
140
141
AviZi280f8012017-06-09 02:39:56 +0300142</project>