Skip to content

Commit db44b26

Browse files
authored
Remove dependency on logback
1 parent 95f9f96 commit db44b26

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

sdu-cloud.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ detekt {
4747
filters = ".*/resources/.*,.*/build/.*"
4848

4949
// https://stackoverflow.com/a/921400
50-
def currentVersion = "v0.2.9"
50+
def currentVersion = "v0.2.10"
5151
URL website = new URL("https://raw.githubusercontent.com/SDU-eScience/GradleBootstrap/$currentVersion/detekt.yml")
5252
ReadableByteChannel rbc = Channels.newChannel(website.openStream())
5353
def outputFile = Files.createTempFile("detekt", ".yml").toFile()
@@ -147,9 +147,11 @@ dependencies {
147147
// Testing
148148
//
149149
dependencies {
150+
def withoutLogback = { exclude group: 'ch.qos.logback', module: 'logback-classic' }
151+
150152
testCompile "junit:junit:4.12"
151153
testCompile "io.mockk:mockk:1.8"
152-
testCompile "io.ktor:ktor-server-test-host:$ktor_version"
154+
testCompile "io.ktor:ktor-server-test-host:$ktor_version", withoutLogback
153155
compile group: 'com.h2database', name: 'h2', version: '1.4.197'
154156
}
155157

0 commit comments

Comments
 (0)