-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
32 lines (27 loc) · 928 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
buildscript {
repositories {
maven { url "http://oss.jfrog.org/artifactory/repo" }
jcenter()
}
dependencies {
classpath 'io.ratpack:ratpack-gradle:0.9.4'
}
}
apply plugin: "ratpack-groovy"
apply plugin: "idea"
apply plugin: "eclipse"
repositories {
maven { url "http://oss.jfrog.org/artifactory/repo" }
jcenter()
maven { url "http://repo.springsource.org/repo" }
maven { url "https://nexus.codehaus.org/content/repositories/snapshots/" }
}
dependencies {
springloaded "org.springsource.loaded:springloaded:1.1.5.RELEASE"
testCompile "org.spockframework:spock-core:0.7-groovy-2.0", {
exclude module: "groovy-all"
}
}
// The Groovy that rest-assured drags in via ratpack-groovy-test is toxic, prevent it from coming in
// This should be fixed upstream in Ratpack
configurations.testCompile.dependencies.find { it.name == "ratpack-groovy-test" }.exclude(group: "org.codehaus.groovy")