From e7c3086db74dd9e7d29c107c3d88a5f117d045d8 Mon Sep 17 00:00:00 2001 From: Nicolay Mitropolsky Date: Fri, 6 Apr 2018 17:54:01 +0300 Subject: [PATCH] 182: dep `javax.annotation:jsr250-api:1.0` added to `compiler/frontend.java` --- compiler/frontend.java/build.gradle.kts.182 | 23 +++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 compiler/frontend.java/build.gradle.kts.182 diff --git a/compiler/frontend.java/build.gradle.kts.182 b/compiler/frontend.java/build.gradle.kts.182 new file mode 100644 index 00000000000..cb52a995460 --- /dev/null +++ b/compiler/frontend.java/build.gradle.kts.182 @@ -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" {} +} +