Refactor: Inline kotlinReflectModule

Review: https://jetbrains.team/p/kt/reviews/6753

In the next commits, source dependency on kotlin-reflect will be
replaced with binary dependency. Thus, it won't be technically be a a
"module" anynmore. So I either have to rename "kotlinReflectModule" or
get rid of it. I decided to get rid of it (inline it) because there is
only one usage.
This commit is contained in:
Nikita Bobko
2022-07-19 20:54:00 +02:00
parent e3bf7698a9
commit 6eb3f1ac05
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ dependencies {
trove4j_jar "org.jetbrains.intellij.deps:trove4j:1.0.20181211@jar"
kotlin_compiler_jar project(kotlinCompilerModule)
kotlin_stdlib_jar kotlinStdLibModule
kotlin_reflect_jar kotlinReflectModule
kotlin_reflect_jar project(":kotlin-reflect")
kotlin_script_runtime_jar project(":kotlin-script-runtime")
compilerApi project(":kotlin-native:utilities:basic-utils")
-1
View File
@@ -88,7 +88,6 @@ ext {
kotlinCompilerModule= [path: ":kotlin-compiler", configuration: "runtimeElements"]
kotlinStdLibModule= project(":kotlin-stdlib")
kotlinReflectModule= project(":kotlin-reflect")
kotlinScriptRuntimeModule= project(":kotlin-script-runtime")
kotlinUtilKliMetadatabModule= project(":kotlin-util-klib-metadata")