blob: 23ba4e8c6464dac84e6888ca2891ea79064ab9ef [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.onboarding</groupId>
9 <artifactId>action-library-rest</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 </parent>
12
13 <artifactId>action-library-rest-services</artifactId>
14
15
16
17 <properties>
18 <errorcode.dir>${project.build.directory}/generated-sources/error-codes</errorcode.dir>
19 </properties>
20
21 <dependencies>
22 <dependency>
23 <groupId>${project.groupId}</groupId>
24 <artifactId>action-library-rest-types</artifactId>
25 <version>${project.version}</version>
26 </dependency>
27
28 <!-- Spring -->
29 <dependency>
30 <groupId>org.springframework</groupId>
31 <artifactId>spring-core</artifactId>
32 <version>${spring.framework.version}</version>
33 </dependency>
34 <dependency>
35 <groupId>org.springframework</groupId>
36 <artifactId>spring-context</artifactId>
37 <version>${spring.framework.version}</version>
38 </dependency>
39 <dependency>
40 <groupId>org.springframework</groupId>
41 <artifactId>spring-context-support</artifactId>
42 <version>${spring.framework.version}</version>
43 </dependency>
44 <dependency>
45 <groupId>org.springframework</groupId>
46 <artifactId>spring-web</artifactId>
47 <version>${spring.framework.version}</version>
48 </dependency>
49 <dependency>
50 <groupId>org.springframework</groupId>
51 <artifactId>spring-beans</artifactId>
52 <version>${spring.framework.version}</version>
53 </dependency>
54
55 <!-- CXF -->
56 <dependency>
57 <groupId>org.apache.cxf</groupId>
58 <artifactId>cxf-rt-frontend-jaxrs</artifactId>
59 <version>${cxf.version}</version>
60 </dependency>
61
62 <dependency>
63 <groupId>org.apache.httpcomponents</groupId>
64 <artifactId>httpclient</artifactId>
65 <version>${http.client.version}</version>
66 </dependency>
67 <dependency>
68 <groupId>org.apache.httpcomponents</groupId>
69 <artifactId>httpcore</artifactId>
70 <version>${http.client.version}</version>
71 </dependency>
72
73 <dependency>
74 <groupId>javax.ws.rs</groupId>
75 <artifactId>javax.ws.rs-api</artifactId>
76 <version>${ws.rs.version}</version>
77 </dependency>
78
79 <!-- Other Stuff-->
80 <dependency>
81 <groupId>cglib</groupId>
82 <artifactId>cglib-nodep</artifactId>
83 <version>${cglib.nodep.version}</version>
84 <scope>runtime</scope>
85 </dependency>
86
87 <!-- Java Stuff -->
88 <dependency>
89 <groupId>javax.inject</groupId>
90 <artifactId>javax.inject</artifactId>
91 <version>${javax.inject.version}</version>
92 <scope>provided</scope>
93 </dependency>
94 <dependency>
95 <groupId>org.openecomp.sdc</groupId>
96 <artifactId>openecomp-sdc-action-manager</artifactId>
97 <version>${project.version}</version>
98 </dependency>
99 <dependency>
100 <groupId>org.openecomp.sdc</groupId>
101 <artifactId>openecomp-sdc-action-api</artifactId>
102 <version>${project.version}</version>
103 </dependency>
104 <dependency>
105 <groupId>org.openecomp.sdc.sdc_common</groupId>
106 <artifactId>openecomp-logging-api</artifactId>
107 <version>${project.version}</version>
108 </dependency>
109 </dependencies>
110
111
112 <build>
113 <plugins>
114 <plugin>
115 <groupId>org.apache.maven.plugins</groupId>
116 <artifactId>maven-surefire-plugin</artifactId>
117 <configuration>
118 <includes>
119 <include>test/core/unittest/offline/**</include>
120 </includes>
121 <skipTests>true</skipTests>
122 </configuration>
123 </plugin>
124 </plugins>
125 </build>
126
127
128
129
130</project>