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
@@ -25,6 +25,7 @@ dependencies {
compile(files("${System.getProperty("java.home")}/../lib/tools.jar"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeIntellijCoreJarDependencies(project) }
compileOnly("org.jetbrains:annotations:13.0")
testCompile(project(":compiler:backend"))
testCompile(project(":compiler:cli"))
+1
View File
@@ -10,6 +10,7 @@ jvmTarget = "1.6"
dependencies {
compile(project(":kotlin-stdlib"))
compileOnly("org.jetbrains:annotations:13.0")
}
sourceSets {