We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5f79f1 commit c2b05baCopy full SHA for c2b05ba
build.gradle
@@ -541,6 +541,12 @@ pluginManager.withPlugin('org.jetbrains.kotlin.kapt') {
541
}
542
543
544
+configurations.configureEach {
545
+ resolutionStrategy.dependencySubstitution {
546
+ substitute module('org.scala-lang:scala-library:2.11.1') using module('org.scala-lang:scala-library:2.11.5') because('To allow mixing with Java 8 targets')
547
+ }
548
+}
549
+
550
if (getFile('dependencies.gradle').exists()) {
551
apply from: 'dependencies.gradle'
552
} else if (getFile('dependencies.gradle.kts').exists()) {
0 commit comments