-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
73 lines (63 loc) · 2.55 KB
/
build.gradle
File metadata and controls
73 lines (63 loc) · 2.55 KB
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
68
69
70
71
72
73
apply plugin: 'java'
ext {
javaVersion = "1.8"
slf4jVersion = "1.7.7"
jacksonVersion = "2.4.4"
springFrameworkVersion = "4.1.4.RELEASE"
metricsVersion = "3.0.2"
jettyVersion = "9.2.2.v20140723"
hamcrestVersion = "1.3"
httpClientVersion = "4.3.3"
}
repositories {
mavenCentral()
}
configurations {
provided
all*.exclude group: 'commons-logging', module: 'commons-logging'
all*.exclude group: 'org.eclipse.jetty.orbit', module: 'javax.servlet'
}
dependencies {
compile 'javax.servlet:javax.servlet-api:3.1.0',
"org.slf4j:slf4j-api:${slf4jVersion}",
'com.google.guava:guava:18.0',
"com.fasterxml.jackson.core:jackson-core:${jacksonVersion}",
"com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}",
"com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}",
"com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:${jacksonVersion}",
"com.fasterxml.jackson.datatype:jackson-datatype-jsr310:${jacksonVersion}",
"org.springframework:spring-webmvc:${springFrameworkVersion}",
"org.springframework:spring-aop:${springFrameworkVersion}",
"org.springframework:spring-tx:${springFrameworkVersion}",
'org.aspectj:aspectjweaver:1.8.1',
"org.eclipse.jetty:jetty-server:${jettyVersion}",
"org.eclipse.jetty:jetty-servlet:${jettyVersion}",
"org.eclipse.jetty:jetty-servlets:${jettyVersion}",
"org.eclipse.jetty:jetty-jmx:${jettyVersion}",
"com.codahale.metrics:metrics-annotation:${metricsVersion}",
"com.codahale.metrics:metrics-core:${metricsVersion}",
'org.hibernate:hibernate-validator:5.1.2.Final',
'javax.validation:validation-api:1.1.0.Final',
'javax.ws.rs:javax.ws.rs-api:2.0.1',
'com.amazonaws:aws-java-sdk-s3:1.9.7'
runtime('org.glassfish.jersey.core:jersey-client:2.6') {
exclude group: 'org.glassfish.hk2', module: 'osgi-resource-locator'
exclude group: 'org.glassfish.hk2.external', module: 'aopalliance-repackaged'
exclude group: 'org.glassfish.hk2.external', module: 'javax.inject'
}
runtime "org.slf4j:jcl-over-slf4j:${slf4jVersion}",
'ch.qos.logback:logback-classic:1.1.2',
'javax.el:javax.el-api:2.2.4',
'org.glassfish.web:javax.el:2.2.4',
'commons-fileupload:commons-fileupload:1.3.1',
'net.sf.jopt-simple:jopt-simple:4.8'
testCompile 'junit:junit:4.11',
'org.mockito:mockito-core:1.9.5',
"org.springframework:spring-test:${springFrameworkVersion}",
"org.hamcrest:hamcrest-core:${hamcrestVersion}",
"org.hamcrest:hamcrest-library:${hamcrestVersion}"
testRuntime 'org.apache.httpcomponents:httpclient:4.3.3'
}
task wrapper(type: Wrapper) {
gradleVersion = '2.2.1'
}