Search Gradle plugins

cc.sfclub.oni.linker

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 2.0

Created 07 February 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 "2.0"
}

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:2.0")
    }
    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:2.0")
      }
    }
    
    apply(plugin = "cc.sfclub.oni.linker")
  • Applying plugins to all subprojects .