Skip to content

Commit

Permalink
Added workaround for Gradle's old snakeyaml dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Winkler committed Mar 13, 2018
1 parent b3f8204 commit e492367
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ tasks.coveralls {
dependsOn 'check'
}

test.doFirst {
classpath = classpath.filter { !it.name.contains("snakeyaml-1.6") }
}

artifacts {
archives sourcesJar
archives javadocJar
Expand Down

0 comments on commit e492367

Please sign in to comment.