FIR IDE: move analysis api fir generator to the analysis directory

This commit is contained in:
Ilya Kirillov
2021-09-14 17:21:29 +02:00
parent b43e664985
commit 4d52b354af
12 changed files with 36 additions and 36 deletions
@@ -0,0 +1,44 @@
plugins {
kotlin("jvm")
id("jps-compatible")
application
}
dependencies {
implementation(project(":compiler:resolution.common"))
implementation(project(":compiler:fir:tree"))
implementation(project(":compiler:fir:tree:tree-generator"))
implementation(project(":compiler:fir:checkers:checkers-component-generator"))
implementation(project(":analysis:analysis-api"))
implementation(project(":kotlin-reflect"))
implementation(project(":kotlin-reflect-api"))
/*
We do not need guava in the generator, but because of a bug in the IJ project importing, we need to have a dependency on intellijCoreDep
the same as it is in `:fir:tree:tree-generator` module to the project be imported correctly
*/
compileOnly(intellijCoreDep()) { includeJars("intellij-core", "guava", rootProject = rootProject) }
implementation(project(":compiler:psi"))
}
val writeCopyright by task<tasks.WriteCopyrightToFile> {
outputFile.set(file("$buildDir/copyright/notice.txt"))
commented.set(true)
}
application {
mainClassName = "org.jetbrains.kotlin.analysis.api.fir.generator.MainKt"
}
val processResources by tasks
processResources.dependsOn(writeCopyright)
sourceSets {
"main" {
projectDefault()
resources.srcDir("$buildDir/copyright")
}
"test" {}
}