182: dep javax.annotation:jsr250-api:1.0 added to compiler/frontend.java

This commit is contained in:
Nicolay Mitropolsky
2018-04-06 17:54:01 +03:00
committed by Nikolay Krasko
parent 072af7304f
commit e7c3086db7
@@ -0,0 +1,23 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
jvmTarget = "1.6"
dependencies {
compile(project(":core:descriptors"))
compile(project(":core:descriptors.jvm"))
compile(project(":compiler:util"))
compile("javax.annotation:jsr250-api:1.0")
compile(project(":compiler:frontend"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeJars("annotations", "asm-all", "trove4j", "guava", rootProject = rootProject) }
}
sourceSets {
"main" { projectDefault() }
"test" {}
}