forked from bertramdev/asset-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (38 loc) · 774 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
44
45
46
buildscript {
repositories {
mavenLocal()
jcenter()
}
dependencies {
}
}
subprojects {
version = '2.14.6'
}
apply plugin: 'groovy'
apply plugin: 'idea'
group = 'com.bertramlabs.plugins'
repositories {
jcenter()
mavenCentral()
}
// groovydoc {
// groovyClasspath = configurations.doc
// }
dependencies {
compile 'org.codehaus.groovy:groovy:2.0.7'
compile 'org.codehaus.groovy:groovy-templates:2.0.7'
compile 'org.mozilla:rhino:1.7R4'
compile 'com.google.javascript:closure-compiler-unshaded:v20160315'
compile 'commons-logging:commons-logging:1.1.1'
testCompile 'org.spockframework:spock-core:0.7-groovy-2.0'
}
test {
testLogging {
exceptionFormat = 'full'
showStandardStreams = true
}
}
task wrapper(type: Wrapper) {
gradleVersion = '3.3'
}