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.1 (latest)

2.1

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.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("cc.sfclub.oni:Oni-Gradle-Plugin:2.1")
      }
    }
    
    apply(plugin = "cc.sfclub.oni.linker")
  • Applying plugins to all subprojects .