summaryrefslogtreecommitdiff
path: root/build.gradle
blob: a33374b96014ad65391209a064c0ddb859a4a4b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
group 'roman'
version '1.0-SNAPSHOT'

apply plugin: 'groovy'
apply plugin: 'java'

sourceCompatibility = 1.8

repositories {
    mavenCentral()
}

dependencies {
    compile 'org.codehaus.groovy:groovy-all:2.3.11'
    compile group: 'com.google.guava', name: 'guava', version: '11.0.2'
    compile group: 'org.jsoup', name: 'jsoup', version: '1.10.3'
    compile group: 'org.json', name: 'json', version: '20090211'
    compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.0-alpha4'
    testCompile group: 'junit', name: 'junit', version: '4.12'
}