forked from pkelly03/thisstrangecity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
external-dependencies.gradle
executable file
·67 lines (51 loc) · 1.96 KB
/
external-dependencies.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
def springVersion = "3.1.2.RELEASE"
def tomcatVersion = "7.0.30"
def jerseyVersion = "1.14"
def cargoVersion = '1.2.4'
ext {
apacheHttpClient = "org.apache.httpcomponents:httpclient:4.2.1"
apacheCommonsIo = "commons-io:commons-io:2.0.1"
jacksonJaxRs = "org.codehaus.jackson:jackson-jaxrs:1.9.9"
commons = [
collections: 'commons-collections:commons-collections:3.2'
]
scala = [
library: "org.scala-lang:scala-library:2.9.2",
compiler: "org.scala-lang:scala-compiler:2.9.2"
]
javax = [
servlet: [
servletApi : "org.apache.tomcat:tomcat-servlet-api:$tomcatVersion",
jspApi : "org.apache.tomcat:tomcat-jsp-api:$tomcatVersion",
jstl : "javax.servlet:jstl:1.2"
]
]
jersey = [
core : "com.sun.jersey:jersey-core:$jerseyVersion",
server: [
"com.sun.jersey:jersey-server:$jerseyVersion",
"com.sun.jersey:jersey-servlet:$jerseyVersion"
],
spring: "com.sun.jersey.contribs:jersey-spring:$jerseyVersion",
client : "com.sun.jersey:jersey-client:$jerseyVersion",
]
spring = [
web: "org.springframework:spring-web:${springVersion}",
]
///////////////////////////////
// DEPLOYMENT DEPENDENCIES
///////////////////////////////
cargo = ["org.codehaus.cargo:cargo-core-uberjar:$cargoVersion", "org.codehaus.cargo:cargo-ant:$cargoVersion"]
///////////////////////
// TEST DEPENDENCIES
///////////////////////
jersey += [
tests: [
"com.sun.jersey.jersey-test-framework:jersey-test-framework-core:$jerseyVersion",
"com.sun.jersey.jersey-test-framework:jersey-test-framework-inmemory:$jerseyVersion",
jersey.client
]
]
junit = "junit:junit:4.10"
scalatest = "org.scalatest:scalatest_2.9.2:1.6.1"
}