-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
60 lines (50 loc) · 1.48 KB
/
build.gradle
File metadata and controls
60 lines (50 loc) · 1.48 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
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"
}
}
configurations {
provided
}
sourceSets {
main.compileClasspath += configurations.provided
test.compileClasspath += configurations.provided
test.runtimeClasspath += configurations.provided
}
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
}
}
dependencies {
compile "org.jtwig:jtwig-core:$jtwigVersion"
compile 'com.google.guava:guava:18.0'
compile 'org.apache.commons:commons-lang3:3.1'
compile 'org.slf4j:slf4j-api:1.7.12'
compile 'org.apache.httpcomponents:httpclient:4.4.1'
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 'org.eclipse.jetty:jetty-server:9.2.10.v20150310'
testCompile 'org.eclipse.jetty:jetty-webapp:9.2.10.v20150310'
testCompile 'org.apache.httpcomponents:fluent-hc:4.4.1'
testCompile 'junit:junit:4.12'
provided 'javax.servlet:javax.servlet-api:3.1.0'
}