net.sneak.commons.crirge-gradle
Owner:
Nick R
This will not work unless you have access to the necessary github repos
https://github.com/VanillaMainServer/CrirgeGradle
Sources: https://github.com/VanillaMainServer/CrirgeGradle.git
Version 0.0.75-SNAPSHOT (latest)
Created 30 August 2020.
This will not work unless you have access to the necessary github repos
Add this plugin to your build using the plugins DSL:
plugins {
id("net.sneak.commons.crirge-gradle") version "0.0.75-SNAPSHOT"
}
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("net.sneak.commons.crirge-gradle:net.sneak.commons.crirge-gradle.gradle.plugin:0.0.75-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("net.sneak.commons.crirge-gradle") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.sneak.commons.crirge-gradle:net.sneak.commons.crirge-gradle.gradle.plugin:0.0.75-SNAPSHOT") } } apply(plugin = "net.sneak.commons.crirge-gradle")
- Applying plugins to all subprojects .