[Decompiler] rename :analysis:decompiled:native -> :analysis:decompiled:decompiler-native

to avoid possible name clashes between different
Gradle subprojects with the same name.

see https://github.com/gradle/gradle/issues/16986
This commit is contained in:
Ilya Kirillov
2023-11-01 11:15:58 +01:00
committed by Space Team
parent 8fbd6ab02b
commit 5f5daa0e06
25 changed files with 7 additions and 7 deletions
@@ -0,0 +1,34 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
sourceSets {
"main" { projectDefault() }
"test" { projectDefault() }
}
projectTest {
workingDir = rootDir
}
dependencies {
api(project(":core:deserialization"))
api(project(":compiler:psi"))
api(project(":compiler:frontend.java"))
api(project(":analysis:decompiled:decompiler-to-file-stubs"))
api(project(":analysis:decompiled:decompiler-to-psi"))
api(project(":analysis:decompiled:decompiler-to-stubs"))
api(project(":js:js.serializer"))
api(project(":kotlin-util-klib-metadata"))
compileOnly(intellijCore())
testApi(platform(libs.junit.bom))
testImplementation(libs.junit4)
testCompileOnly(libs.junit.jupiter.api) // the annotations are misused and have no effect
testImplementation(projectTests(":compiler:tests-common"))
testImplementation(projectTests(":compiler:tests-common-new"))
testImplementation(projectTests(":analysis:decompiled:decompiler-to-file-stubs"))
}
testsJar()