forked from jgritman/httpbuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (35 loc) · 1.6 KB
/
build.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
apply plugin: 'maven'
group = 'org.codehaus.groovy.modules.http-builder'
version = '0.7.3-SNAPSHOT'
description = """HTTP client framework for Groovy"""
apply plugin: 'groovy'
repositories {
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
compile group: 'org.apache.httpcomponents', name: 'httpclient', version:'4.2.1'
compile(group: 'net.sf.json-lib', name: 'json-lib', version:'2.3', classifier:'jdk15') {
exclude(module: 'jruby')
exclude(module: 'xmlunit')
exclude(module: 'xom')
}
compile group: 'net.sourceforge.nekohtml', name: 'nekohtml', version:'1.9.16'
compile group: 'xml-resolver', name: 'xml-resolver', version:'1.2'
compile group: 'oauth.signpost', name: 'signpost-commonshttp4', version:'1.2.1.1'
compile group: 'oauth.signpost', name: 'signpost-core', version:'1.2.1.1'
compile group: 'com.google.appengine', name: 'appengine-api-1.0-sdk', version:'1.3.8'
compile group: 'xerces', name: 'xercesImpl', version:'[2.6.2,)'
testCompile(group: 'log4j', name: 'log4j', version:'1.2.15') {
exclude(module: 'jmxtools')
exclude(module: 'jmxri')
exclude(module: 'jms')exclude(module: 'mail')
}
testCompile group: 'commons-io', name: 'commons-io', version:'1.4'
testCompile group: 'junit', name: 'junit', version:'4.5'
testCompile group: 'com.strategicgains', name: 'RestExpress', version:'0.11.3'
compile(group: 'org.codehaus.groovy', name: 'groovy', version:'2.4.6') {
exclude(module: 'ant')
exclude(module: 'jline')
exclude(module: 'jansi')
}
}