You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: multiplatform-annotations/build.gradle.kts
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -79,18 +79,18 @@ kotlin {
79
79
// from https://github.com/Kotlin/kotlinx-datetime/blob/bc8adee2b9e3659e8e1c38fc09f3a4a1bdf85276/core/build.gradle.kts
80
80
tasks {
81
81
val compileJavaModuleInfo by registering(JavaCompile::class) {
82
-
val moduleName ="org.jetbrains.annotations.multiplatform"// this module's name
82
+
val moduleName ="org.jetbrains.annotations"// this module's name
83
83
val compileKotlinJvm by getting(KotlinCompile::class)
84
+
val compileJava by getting(JavaCompile::class)
84
85
val sourceDir = file("src/jvmMain/moduleInfo/")
85
-
println("sourceDir: $sourceDir")
86
86
val targetDir = compileKotlinJvm.destinationDirectory.map { it.dir("../moduleInfo/") }
0 commit comments