![JAR search and dependency download from the Maven repository](/logo.png)
godot.gradle.projectExt.configureThirdPartyPlugins.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of godot-gradle-plugin Show documentation
Show all versions of godot-gradle-plugin Show documentation
Godot gradle plugin for kotlin language support.
package godot.gradle.projectExt
import com.github.jengelman.gradle.plugins.shadow.ShadowPlugin
import com.google.devtools.ksp.gradle.KspGradleSubplugin
import godot.tools.common.constants.FileExtensions
import org.gradle.api.Project
import org.gradle.plugins.ide.idea.IdeaPlugin
import org.jetbrains.gradle.ext.IdeaExtPlugin
import java.io.File
fun Project.configureThirdPartyPlugins() {
//apply needed third party plugins
repositories.google() //add google repository for ksp (kotlin symbol processing
pluginManager.apply(KspGradleSubplugin::class.java)
pluginManager.apply(IdeaPlugin::class.java) //needed so idea can find and index the generated sources from ksp
pluginManager.apply(IdeaExtPlugin::class.java) //needed so idea can find and index the generated sources from ksp
pluginManager.apply(ShadowPlugin::class.java)
addKspGeneratedSourcesToMainSourceSet()
afterEvaluate {
kspExtension.apply {
arg(
"srcDirs",
kotlinJvmExtension
.sourceSets
.getByName("main")
.kotlin
.srcDirs
.joinToString(File.pathSeparator) {
it.absolutePath.replace(File.separator, "/")
}
)
arg(
"projectBasePath",
projectDir.absolutePath.replace(File.separator, "/")
)
arg(
"projectName",
(godotJvmExtension.projectName.orNull ?: project.name).replace(" ", "_")
)
arg(
"registrationFileBaseDir",
(
godotJvmExtension
.registrationFileBaseDir
.orNull
?.asFile
?: projectDir
.resolve(FileExtensions.GodotKotlinJvm.registrationFile)
.apply {
if (godotJvmExtension.isRegistrationFileGenerationEnabled.getOrElse(true)) {
mkdirs()
}
}
)
.relativeTo(projectDir)
.path
.replace(File.separator, "/")
.removePrefix("/")
.removeSuffix("/")
)
arg(
"classPrefix",
godotJvmExtension.classPrefix.orNull.toString()
)
arg(
"isRegistrationFileHierarchyEnabled",
godotJvmExtension.isRegistrationFileHierarchyEnabled.getOrElse(true).toString()
)
arg(
"isFqNameRegistrationEnabled",
godotJvmExtension.isFqNameRegistrationEnabled.getOrElse(false).toString()
)
arg(
"isRegistrationFileGenerationEnabled",
godotJvmExtension.isRegistrationFileGenerationEnabled.getOrElse(true).toString()
)
}
ideaExtension.apply {
module { ideaModule ->
ideaModule.generatedSourceDirs.add(buildDir.resolve("generated/ksp/main/kotlin/"))
}
}
}
}
private fun Project.addKspGeneratedSourcesToMainSourceSet() {
kotlinJvmExtension
.sourceSets
.getByName("main")
.kotlin
.srcDirs(buildDir.resolve("generated/ksp/main/kotlin/"))
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy