<@U0NJZ3TEF> Spek is built against Kotlin 1.0.6 wh...
# spek
a
@revbingo Spek is built against Kotlin 1.0.6 which reflect library are not compatible with 1.1 use this to force the newest version
Copy code
configurations.all {
    resolutionStrategy {
        eachDependency { DependencyResolveDetails details ->
            if (details.requested.group == 'org.jetbrains.kotlin') {
                details.useVersion rootProject.kotlinVersion
            }
        }
    }
}