Add explicit dependencies to nullable annotations

This commit is contained in:
Sergey Rostov
2018-12-11 12:26:17 +03:00
parent 423653d225
commit 883970fadb
38 changed files with 41 additions and 11 deletions
+1
View File
@@ -20,6 +20,7 @@ dependencies {
compileOnly project(':core:deserialization')
compileOnly project(':core:descriptors.runtime')
compileOnly project(':core:util.runtime')
compileOnly "org.jetbrains:annotations:13.0"
}
compileJava9Sources(
+3 -1
View File
@@ -62,7 +62,9 @@ dependencies {
shadows(project(":core:descriptors.runtime"))
shadows(project(":core:util.runtime"))
shadows("javax.inject:javax.inject:1")
shadows(project(":custom-dependencies:protobuf-lite", configuration = "default"))
shadows(protobufLite())
compileOnly("org.jetbrains:annotations:13.0")
}
class KotlinModuleShadowTransformer(private val logger: Logger) : Transformer {