-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
46 lines (38 loc) · 1.08 KB
/
build.gradle
File metadata and controls
46 lines (38 loc) · 1.08 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
task wrapper(type: Wrapper) { gradleVersion = '2.6' }
defaultTasks 'groovy'
apply plugin: 'eclipse'
apply plugin: 'groovy'
buildscript {
repositories { jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies { classpath "io.ratpack:ratpack-gradle:1.1.1",
"gradle.plugin.com.craigburke.gradle:jasmine-gradle:1.2.0"
}
}
apply plugin: "io.ratpack.ratpack-groovy"
apply plugin: "com.craigburke.jasmine"
repositories { jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
compile 'io.ratpack:ratpack-groovy:1.1.1',
'org.slf4j:slf4j-simple:1.7.12',
'cglib:cglib:2.2.2',
'org.webjars:jasmine-jquery:2.0.3'
// TODO For JDK 8 dates, will need later
// 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.6.1'
testCompile 'org.hamcrest:hamcrest-all:1.3',
'org.mockito:mockito-core:1.10.19',
// TODO we will need this later
// "org.gebish:geb-spock:0.10.+",
'org.spockframework:spock-core:1.0-groovy-2.4'
}
configurations {
all*.exclude module: 'hamcrest-core'
all*.exclude module: 'mockito-all'
}