-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
43 lines (35 loc) · 933 Bytes
/
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
apply plugin: 'java'
apply from: 'gradle/jtwig-version.gradle'
apply from: 'gradle/jacoco.gradle'
apply from: 'gradle/bintray.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"
}
}
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
}
}
dependencies {
compile "org.jtwig:jtwig-translate-extension:$jtwigVersion"
compile 'com.google.guava:guava:18.0'
compile 'org.apache.commons:commons-lang3:3.1'
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'
}