hfhbd
12/28/2022, 1:29 PMThe root project is not yet available for build
called in registerProjectStructureMetadata
ephemient
12/28/2022, 2:25 PMplugins {
kotlin("multiplatform") apply false
}
in your root project? (may need a version)ephemient
12/28/2022, 2:27 PMhfhbd
12/28/2022, 2:27 PM.gradle.kts
plugin, I used a "normal" plugin (defined in kt file), then it worked too. But still strangeephemient
12/28/2022, 2:29 PMephemient
12/28/2022, 2:30 PMhfhbd
12/28/2022, 2:32 PMapply(project: Project)
functions.ephemient
12/28/2022, 2:35 PM.gradle.kts
that contains
plugins {
`java-library`
}
then I can use
java {
...
}
in that script, because Gradle has executed the Java library plugin during the build (it will execute again when applied)ephemient
12/28/2022, 2:37 PMproject.the<JavaExtension>()
or whatever it is, there are no type-safe accessors generated for youephemient
12/28/2022, 2:38 PMhfhbd
12/28/2022, 2:42 PM