Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,22 @@ repositories {
}

configurations {
funTestCompile.extendsFrom testCompile
funTestRuntime.extendsFrom testRuntime
funTestCompile.extendsFrom testImplementation
funTestRuntime.extendsFrom testRuntimeOnly
}

dependencies {
runtime "org.slf4j:slf4j-simple:1.7.12"
runtimeOnly "org.slf4j:slf4j-simple:1.7.12"

compile ratpack.dependency("guice")
compile "org.mongodb:mongo-java-driver:3.2.2"
compile "org.slf4j:slf4j-simple:1.7.5"
compile "com.github.sdkman:sdkman-persistent-model:1.1.1"
implementation ratpack.dependency("guice")
implementation "org.mongodb:mongo-java-driver:3.2.2"
implementation "org.slf4j:slf4j-simple:1.7.5"
implementation "com.github.sdkman:sdkman-persistent-model:1.1.1"

testCompile "org.codehaus.groovy:groovy-all:2.4.19"
testCompile "org.spockframework:spock-core:1.1-groovy-2.4"
testRuntime "cglib:cglib-nodep:3.1"
testRuntime "org.objenesis:objenesis:2.1"
testImplementation "org.codehaus.groovy:groovy-all:2.4.19"
testImplementation "org.spockframework:spock-core:1.1-groovy-2.4"
testRuntimeOnly "cglib:cglib-nodep:3.1"
testRuntimeOnly "org.objenesis:objenesis:2.1"

funTestCompile ratpack.dependency("test")
funTestCompile "io.cucumber:cucumber-junit:6.1.1"
Expand Down