-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathbuild.gradle
52 lines (45 loc) · 1.33 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
47
48
49
50
51
52
buildscript {
repositories {
mavenCentral()
jcenter()
maven {
url "http://dl.bintray.com/jtwig/maven"
}
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
}
}
apply plugin: 'java'
apply from: 'gradle/jtwig-version.gradle'
apply from: 'gradle/bintray.gradle'
apply from: 'gradle/jacoco.gradle'
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenCentral()
mavenLocal()
jcenter()
maven {
url "http://dl.bintray.com/jtwig/maven"
}
maven {
url "http://dl.bintray.com/jtwig/snapshots"
}
}
dependencies {
compile "org.jtwig:jtwig-reflection:$jtwigVersion"
compile 'com.google.guava:guava:18.0'
compile 'org.apache.commons:commons-lang3:3.6'
compile 'org.parboiled:parboiled-java:1.1.7'
compile 'org.slf4j:slf4j-api:1.7.12'
compile 'com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2'
testCompile 'commons-io:commons-io:2.4'
testCompile 'org.mockito:mockito-core:1.10.19'
testCompile 'org.hamcrest:hamcrest-all:1.3'
testCompile 'org.hamcrest:hamcrest-core:1.3'
testCompile 'junit:junit:4.12'
testCompile 'org.exparity:hamcrest-bean:1.0.11'
testCompile 'org.unitils:unitils-core:3.4.2'
testCompile 'net.jperf:jperf:1.0.3'
}