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.
Using the plugins DSL:
plugins {
id("cc.sfclub.oni.linker") version "1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("cc.sfclub.oni:Oni-Gradle-Plugin:1.3")
}
}
apply(plugin = "cc.sfclub.oni.linker")
Using the plugins DSL:
plugins {
id "cc.sfclub.oni.linker" version "1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "cc.sfclub.oni:Oni-Gradle-Plugin:1.3"
}
}
apply plugin: "cc.sfclub.oni.linker"