blob: ffc417313ac17b8e1cb814ed7db9dfd5446569e6 [file] [log] [blame]
Avi Zivb8e2faf2017-07-18 19:45:38 +03001<?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>validation-rest-services</artifactId>
8 <parent>
9 <groupId>org.openecomp.sdc.onboarding</groupId>
10 <artifactId>validation-rest</artifactId>
11 <version>1.0-SNAPSHOT</version>
12 </parent>
13
14 <dependencies>
15 <dependency>
16 <groupId>org.springframework</groupId>
17 <artifactId>spring-core</artifactId>
18 <version>${spring.framework.version}</version>
19 </dependency>
20 <dependency>
21 <groupId>org.springframework</groupId>
22 <artifactId>spring-context</artifactId>
23 <version>${spring.framework.version}</version>
24 </dependency>
25 <dependency>
26 <groupId>org.springframework</groupId>
27 <artifactId>spring-context-support</artifactId>
28 <version>${spring.framework.version}</version>
29 </dependency>
30 <dependency>
31 <groupId>org.springframework</groupId>
32 <artifactId>spring-web</artifactId>
33 <version>${spring.framework.version}</version>
34 </dependency>
35 <dependency>
36 <groupId>org.springframework</groupId>
37 <artifactId>spring-beans</artifactId>
38 <version>${spring.framework.version}</version>
39 </dependency>
40
41 <!-- CXF -->
42 <dependency>
43 <groupId>org.apache.cxf</groupId>
44 <artifactId>cxf-rt-frontend-jaxrs</artifactId>
45 <version>${cxf.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>org.apache.httpcomponents</groupId>
49 <artifactId>httpclient</artifactId>
50 <version>${http.client.version}</version>
51 </dependency>
52
53 <dependency>
54 <groupId>javax.ws.rs</groupId>
55 <artifactId>javax.ws.rs-api</artifactId>
56 <version>${ws.rs.version}</version>
57 </dependency>
58
59 <!-- Other Stuff-->
60 <!--dependency>
61 <groupId>cglib</groupId>
62 <artifactId>cglib-nodep</artifactId>
63 <version>${cglib.nodep.version}</version>
64 <scope>runtime</scope>
65 </dependency-->
66
67 <!-- Java Stuff -->
68 <dependency>
69 <groupId>javax.inject</groupId>
70 <artifactId>javax.inject</artifactId>
71 <version>${javax.inject.version}</version>
72 <scope>provided</scope>
73 </dependency>
74 <dependency>
75 <groupId>javax.ws.rs</groupId>
76 <artifactId>javax.ws.rs-api</artifactId>
77 <version>${ws.rs.version}</version>
78 </dependency>
79 <dependency>
80 <groupId>com.sun.jersey</groupId>
81 <artifactId>jersey-core</artifactId>
82 <version>1.19.1</version>
83 <exclusions>
84 <exclusion>
85 <groupId>javax.ws.rs</groupId>
86 <artifactId>jsr311-api</artifactId>
87 </exclusion>
88 </exclusions>
89 </dependency>
90 <dependency>
91 <groupId>io.swagger</groupId>
92 <artifactId>swagger-annotations</artifactId>
93 <version>1.5.3</version>
94 </dependency>
95 <dependency>
96 <groupId>org.openecomp.sdc.onboarding</groupId>
97 <artifactId>validation-rest-types</artifactId>
98 <version>${project.version}</version>
99 </dependency>
100 <dependency>
101 <groupId>com.fasterxml.jackson.core</groupId>
102 <artifactId>jackson-annotations</artifactId>
103 <version>2.7.4</version>
104 </dependency>
105 <dependency>
106 <groupId>com.fasterxml.jackson.dataformat</groupId>
107 <artifactId>jackson-dataformat-xml</artifactId>
108 <version>2.7.4</version>
109 </dependency>
110 <dependency>
111 <groupId>org.codehaus.woodstox</groupId>
112 <artifactId>woodstox-core-asl</artifactId>
113 <version>4.4.1</version>
114 </dependency>
115
116 <dependency>
117 <groupId>org.openecomp.sdc</groupId>
118 <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId>
119 <version>${project.version}</version>
120 </dependency>
121 <dependency>
122 <groupId>com.sun.jersey.contribs</groupId>
123 <artifactId>jersey-multipart</artifactId>
124 <version>1.18.1</version>
125 <scope>provided</scope>
126 </dependency>
127
128
129 </dependencies>
130
131
132 <build>
133 <plugins>
134 <plugin>
135 <groupId>org.apache.maven.plugins</groupId>
136 <artifactId>maven-surefire-plugin</artifactId>
137 <configuration>
138 <includes>
139 <include>test/core/unittest/offline/**</include>
140 </includes>
141 <skipTests>true</skipTests>
142 </configuration>
143 </plugin>
144 <!-- Error codes generator plugin -->
145 <!--plugin>
146 <groupId>org.openecomp.nfv.tools</groupId>
147 <artifactId>error-codes-maven-plugin</artifactId>
148 </plugin-->
149 </plugins>
150 </build>
151
152</project>