cc.sfclub.oni.linker
Owner: iceBear67
A gradle plugin that produces a config file automatically for oni-bukkit-bootstrap to do something (e.g solve/download dependencies) for your bukkit plugins.
https://github.com/saltedfishclub/oni-gradle-plugin
Sources: https://github.com/saltedfishclub/oni-gradle-plugin
Version 1.3
Created 08 January 2021.
A gradle plugin that produces a config file automatically for oni-bukkit-bootstrap to do something (e.g solve/download dependencies) for your bukkit plugins.
Add this plugin to your build using the plugins DSL:
plugins {
id("cc.sfclub.oni.linker") version "1.3"
}
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("cc.sfclub.oni.linker:cc.sfclub.oni.linker.gradle.plugin:1.3") }
It can then be applied in the precompiled script plugin:plugins { id("cc.sfclub.oni.linker") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cc.sfclub.oni.linker:cc.sfclub.oni.linker.gradle.plugin:1.3") } } apply(plugin = "cc.sfclub.oni.linker")
- Applying plugins to all subprojects .