Gradle plugin for relocating Kotlin, so you can use Kotlin bundled with Plasmo Voice.
settings.gradle.kts
pluginManagement {
repositories {
maven("https://repo.plasmoverse.com/snapshots")
}
}
build.gradle.kts
plugins {
id("su.plo.voice.plugin.relocate-kotlin") version "${version}"
}
Gradle plugin for generating Plasmo Voice universal add-ons entrypoints.
You only need to add the su.plo.voice.plugin
Gradle plugin, and entrypoints will be generated and added to source sets.
Note: This plugin adds all platforms (Spigot/BungeeCord/Velocity/Fabric/Forge) to your project classpath.
settings.gradle.kts
pluginManagement {
repositories {
maven("https://repo.plasmoverse.com/snapshots")
}
}
build.gradle.kts
plugins {
kotlin("jvm") version("1.8.22") // you also need to add kotlin plugin
id("su.plo.voice.plugin.entrypoints") version "${version}"
}