tech.justagod.cutter
Owner:
Yury
Plugin to protect mods' server code
https://gitlab.com/hvalick2111/cutter
Sources: https://gitlab.com/hvalick2111/cutter
Version 3.0-rc (latest)
Created 12 December 2021.
Plugin to protect mods' server code
Add this plugin to your build using the plugins DSL:
plugins {
id("tech.justagod.cutter") version "3.0-rc"
}
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("tech.justagod.cutter:tech.justagod.cutter.gradle.plugin:3.0-rc") }
It can then be applied in the precompiled script plugin:plugins { id("tech.justagod.cutter") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("tech.justagod.cutter:tech.justagod.cutter.gradle.plugin:3.0-rc") } } apply(plugin = "tech.justagod.cutter")
- Applying plugins to all subprojects .