blob: a8927caa22b97ea844f89cf082b4393e5bf2ea99 [file] [log] [blame]
ChrisC025301d2017-01-31 11:40:03 +01001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
Rob Daugherty9de3ce02017-08-04 12:15:51 -04006 <groupId>org.openecomp.so</groupId>
ChrisC025301d2017-01-31 11:40:03 +01007 <artifactId>mso-api-handlers</artifactId>
seshukm6c99e8d2017-11-16 15:46:26 +05308 <version>1.1.1-SNAPSHOT</version>
ChrisC025301d2017-01-31 11:40:03 +01009 </parent>
10
11
12 <artifactId>mso-api-handler-infra</artifactId>
13
14 <name>mso-api-handler-infra</name>
15 <description>ECOMP MSO API Handler Infra</description>
16 <properties>
17 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Arthur Martella62cd6aa2017-09-08 13:27:46 -040019 <spring-version>3.2.9.RELEASE</spring-version>
20 <swagger-version>1.3.0</swagger-version>
21 <jax-rs-version>1.1.1</jax-rs-version>
22 <json4s-jackson-version>3.2.4</json4s-jackson-version>
23 <json4s-core-version>3.0.0</json4s-core-version>
24 <fasterxml-json-version>2.2.2</fasterxml-json-version>
25 <scala-lang-version>2.9.1-1</scala-lang-version>
26 <reflections-version>0.9.9-RC1</reflections-version>
27 <javassist-version>3.16.1-GA</javassist-version>
28 <paranamer-version>2.5.2</paranamer-version>
29 <scannotation-version>1.0.3</scannotation-version>
30 <resteasy-version>3.0.18.Final</resteasy-version>
ChrisC025301d2017-01-31 11:40:03 +010031 </properties>
32
33 <dependencies>
34 <dependency>
Arthur Martella62cd6aa2017-09-08 13:27:46 -040035 <groupId>com.github.tomakehurst</groupId>
36 <artifactId>wiremock</artifactId>
37 <version>2.6.0</version>
38 </dependency>
39 <dependency>
40 <groupId>org.camunda.bpm</groupId>
41 <artifactId>camunda-engine</artifactId>
42 <version>7.8.0-alpha1</version>
43 <scope>provided</scope>
44 </dependency>
45 <dependency>
ChrisC025301d2017-01-31 11:40:03 +010046 <groupId>org.jboss.resteasy</groupId>
47 <artifactId>resteasy-jaxrs</artifactId>
48 <version>3.0.19.Final</version>
49 <scope>provided</scope>
50 <exclusions>
51 <exclusion>
52 <groupId>org.slf4j</groupId>
53 <artifactId>slf4j-api</artifactId>
54 </exclusion>
55 <exclusion>
56 <groupId>org.slf4j</groupId>
57 <artifactId>slf4j-simple</artifactId>
58 </exclusion>
59 <exclusion>
60 <groupId>org.apache.httpcomponents</groupId>
61 <artifactId>httpclient</artifactId>
62 </exclusion>
63 </exclusions>
64 </dependency>
65
66 <dependency>
67 <groupId>javax</groupId>
68 <artifactId>javaee-web-api</artifactId>
69 <version>6.0</version>
70 <scope>provided</scope>
71 </dependency>
72
73 <dependency>
74 <groupId>org.jboss.spec.javax.ejb</groupId>
75 <artifactId>jboss-ejb-api_3.2_spec</artifactId>
76 <version>1.0.0.Final</version>
77 <scope>provided</scope>
78 </dependency>
79 <dependency>
80 <groupId>org.jboss.ejb3</groupId>
81 <artifactId>jboss-ejb3-ext-api</artifactId>
82 <version>2.2.0.Final</version>
83 <scope>provided</scope>
ChrisC1ba1d192017-03-13 05:01:04 -070084 </dependency>
ChrisC025301d2017-01-31 11:40:03 +010085
86 <dependency>
87 <groupId>javax.activation</groupId>
88 <artifactId>activation</artifactId>
89 <version>1.1.1</version>
90 <scope>provided</scope>
91 </dependency>
Arthur Martella62cd6aa2017-09-08 13:27:46 -040092 <dependency>
93 <groupId>org.jboss.resteasy</groupId>
94 <artifactId>resteasy-jackson-provider</artifactId>
95 <version>${resteasy-version}</version>
96 </dependency>
97 <dependency>
98 <groupId>javax.ws.rs</groupId>
99 <artifactId>jsr311-api</artifactId>
100 <version>${jax-rs-version}</version>
101 </dependency>
ChrisC025301d2017-01-31 11:40:03 +0100102
ChrisC1ba1d192017-03-13 05:01:04 -0700103 <dependency>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400104 <groupId>org.json4s</groupId>
105 <artifactId>json4s-jackson_2.9.1-1</artifactId>
106 <version>${json4s-jackson-version}</version>
107 </dependency>
108 <dependency>
109 <groupId>org.json4s</groupId>
110 <artifactId>json4s-core_2.9.2</artifactId>
111 <version>${json4s-core-version}</version>
112 </dependency>
113 <dependency>
114 <groupId>com.fasterxml.jackson.core</groupId>
115 <artifactId>jackson-databind</artifactId>
116 <version>${fasterxml-json-version}</version>
117 </dependency>
118 <dependency>
119 <groupId>com.fasterxml.jackson.core</groupId>
120 <artifactId>jackson-core</artifactId>
121 <version>${fasterxml-json-version}</version>
122 </dependency>
123 <dependency>
124 <groupId>com.fasterxml.jackson.core</groupId>
125 <artifactId>jackson-annotations</artifactId>
126 <version>${fasterxml-json-version}</version>
127 </dependency>
128 <dependency>
129 <groupId>com.thoughtworks.paranamer</groupId>
130 <artifactId>paranamer</artifactId>
131 <version>${paranamer-version}</version>
132 </dependency>
133 <dependency>
134 <groupId>org.scala-lang</groupId>
135 <artifactId>scala-library</artifactId>
136 <version>${scala-lang-version}</version>
137 </dependency>
138 <dependency>
139 <groupId>org.reflections</groupId>
140 <artifactId>reflections</artifactId>
141 <version>${reflections-version}</version>
142 </dependency>
143 <dependency>
144 <groupId>javax.servlet</groupId>
145 <artifactId>servlet-api</artifactId>
146 <version>2.5</version>
147 <scope>provided</scope>
148 </dependency>
149 <dependency>
150 <groupId>org.javassist</groupId>
151 <artifactId>javassist</artifactId>
152 <version>${javassist-version}</version>
153 </dependency>
154 <dependency>
155 <groupId>org.scannotation</groupId>
156 <artifactId>scannotation</artifactId>
157 <version>${scannotation-version}</version>
158 </dependency>
159 <!-- swagger -->
160 <dependency>
161 <groupId>com.wordnik</groupId>
162 <artifactId>swagger-jersey-jaxrs_2.9.1</artifactId>
163 <version>${swagger-version}</version>
164 <scope>provided</scope>
165 </dependency>
166 <dependency>
167 <groupId>com.wordnik</groupId>
168 <artifactId>swagger-annotations_2.9.1</artifactId>
169 <version>${swagger-version}</version>
170 </dependency>
171 <dependency>
172 <groupId>com.wordnik</groupId>
173 <artifactId>swagger-core_2.9.1</artifactId>
174 <version>${swagger-version}</version>
175 </dependency>
176 <dependency>
177 <groupId>com.wordnik</groupId>
178 <artifactId>swagger-jaxrs_2.9.1</artifactId>
179 <version>${swagger-version}</version>
180 </dependency>
181 <!-- Spring 3 dependencies -->
182 <dependency>
183 <groupId>org.springframework</groupId>
184 <artifactId>spring-core</artifactId>
185 <version>${spring-version}</version>
186 </dependency>
187 <dependency>
188 <groupId>org.springframework</groupId>
189 <artifactId>spring-context</artifactId>
190 <version>${spring-version}</version>
191 </dependency>
192 <dependency>
193 <groupId>org.springframework</groupId>
194 <artifactId>spring-web</artifactId>
195 <version>${spring-version}</version>
196 </dependency>
197 <dependency>
198 <groupId>org.springframework</groupId>
199 <artifactId>spring-aop</artifactId>
200 <version>${spring-version}</version>
201 </dependency>
202 <dependency>
203 <groupId>org.springframework</groupId>
204 <artifactId>spring-tx</artifactId>
205 <version>${spring-version}</version>
206 </dependency>
207 <dependency>
208 <groupId>org.springframework</groupId>
209 <artifactId>spring-expression</artifactId>
210 <version>${spring-version}</version>
211 </dependency>
212 <dependency>
213 <groupId>org.springframework</groupId>
214 <artifactId>spring-context-support</artifactId>
215 <version>${spring-version}</version>
216 </dependency>
217 <dependency>
218 <groupId>org.springframework</groupId>
219 <artifactId>spring-beans</artifactId>
220 <version>${spring-version}</version>
221 </dependency>
222 <dependency>
Rob Daugherty9de3ce02017-08-04 12:15:51 -0400223 <groupId>org.openecomp.so</groupId>
ChrisC025301d2017-01-31 11:40:03 +0100224 <artifactId>mso-catalog-db</artifactId>
225 <version>${project.version}</version>
ChrisC1ba1d192017-03-13 05:01:04 -0700226 </dependency>
ChrisC025301d2017-01-31 11:40:03 +0100227 <dependency>
Rob Daugherty9de3ce02017-08-04 12:15:51 -0400228 <groupId>org.openecomp.so</groupId>
ChrisC025301d2017-01-31 11:40:03 +0100229 <artifactId>mso-requests-db</artifactId>
230 <version>${project.version}</version>
231 </dependency>
232 <dependency>
Rob Daugherty9de3ce02017-08-04 12:15:51 -0400233 <groupId>org.openecomp.so</groupId>
ChrisC025301d2017-01-31 11:40:03 +0100234 <artifactId>mso-api-handler-common</artifactId>
235 <version>${project.version}</version>
236 </dependency>
237 <dependency>
Rob Daugherty9de3ce02017-08-04 12:15:51 -0400238 <groupId>org.openecomp.so</groupId>
ChrisC025301d2017-01-31 11:40:03 +0100239 <artifactId>status-control</artifactId>
240 <version>${project.version}</version>
241 </dependency>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400242 <dependency>
seshukm75653ec2017-10-05 19:03:37 +0530243 <groupId>org.mockito</groupId>
244 <artifactId>mockito-all</artifactId>
245 <version>1.10.19</version>
246 <scope>test</scope>
247 </dependency>
248 <dependency>
seshukm7c2a1602017-09-14 10:25:31 +0530249 <groupId>org.jmockit</groupId>
250 <artifactId>jmockit</artifactId>
251 <version>1.8</version>
252 <scope>test</scope>
253 </dependency>
254 <dependency>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400255 <groupId>junit</groupId>
256 <artifactId>junit</artifactId>
257 <version>4.12</version>
258 <scope>test</scope>
259 </dependency>
260 <dependency>
261 <groupId>org.json</groupId>
262 <artifactId>json</artifactId>
263 <version>20160212</version>
264 </dependency>
ChrisC025301d2017-01-31 11:40:03 +0100265 </dependencies>
266 <build>
267 <finalName>${project.artifactId}-${project.version}</finalName>
268 <plugins>
ChrisC1ba1d192017-03-13 05:01:04 -0700269
ChrisC025301d2017-01-31 11:40:03 +0100270 <plugin>
271 <artifactId>maven-war-plugin</artifactId>
xg353yb6b7bef2017-04-11 13:30:42 +0200272 <version>2.4</version>
ChrisC025301d2017-01-31 11:40:03 +0100273 <configuration>
274 <warSourceDirectory>WebContent</warSourceDirectory>
275 <failOnMissingWebXml>false</failOnMissingWebXml>
276 <attachClasses>true</attachClasses>
277 </configuration>
278 </plugin>
279 </plugins>
280 </build>
281 <packaging>war</packaging>
282</project>