-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (45 loc) · 1.04 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 {
mavenLocal()
jcenter()
maven {
url "http://xbib.org/repository"
}
}
dependencies {
classpath 'org.xbib.gradle.plugin:gradle-plugin-jflex:1.1.0'
}
}
subprojects {
version = '0.0.1'
}
apply plugin: 'groovy'
apply plugin: 'idea'
apply plugin: 'org.xbib.gradle.plugin.jflex'
group = 'com.bertramlabs.plugins'
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
compileOnly 'org.codehaus.groovy:groovy:2.0.7'
compile 'commons-logging:commons-logging:1.1.1'
compile 'org.grooscript:grooscript:1.2.2'
compile 'org.mozilla:rhino:1.7R4'
testCompile 'org.spockframework:spock-core:0.7-groovy-2.0'
}
test {
testLogging {
exceptionFormat = 'full'
showStandardStreams = true
}
}
task wrapper(type: Wrapper) {
gradleVersion = '3.3'
}
tasks.withType(JavaExec) {
// Assign all Java system properties from
// the command line to the JavaExec task.
systemProperties System.properties
}