io.github.revxrsal.bukkitkobjects
Owner: Revxrsal
A Gradle plugin that allows using Kotlin objects for JavaPlugins
https://github.com/Revxrsal/bukkit-kobjects
Sources: https://github.com/Revxrsal/bukkit-kobject.git
Version 0.0.4
Created 24 December 2024.
A Gradle plugin that allows using Kotlin objects for JavaPlugins
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.revxrsal.bukkitkobjects") version "0.0.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.github.revxrsal.bukkitkobjects:io.github.revxrsal.bukkitkobjects.gradle.plugin:0.0.4") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.revxrsal.bukkitkobjects") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.revxrsal.bukkitkobjects:io.github.revxrsal.bukkitkobjects.gradle.plugin:0.0.4") } } apply(plugin = "io.github.revxrsal.bukkitkobjects")
- Applying plugins to all subprojects .