5f5daa0e06
to avoid possible name clashes between different Gradle subprojects with the same name. see https://github.com/gradle/gradle/issues/16986
24 lines
636 B
Kotlin
24 lines
636 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":compiler:psi"))
|
|
implementation(project(":compiler:frontend.java"))
|
|
implementation(project(":core:compiler.common"))
|
|
implementation(project(":analysis:project-structure"))
|
|
implementation(project(":analysis:decompiled:decompiler-to-file-stubs"))
|
|
implementation(project(":analysis:decompiled:decompiler-to-psi"))
|
|
implementation(project(":analysis:decompiled:decompiler-native"))
|
|
implementation(intellijCore())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { none() }
|
|
}
|
|
|
|
kotlin {
|
|
explicitApi()
|
|
} |