com.zwendo.restrikt
Owner: Lorris Creantor
Gradle plugin for Restrikt compiler plugin
https://github.com/ZwenDo/Restrikt
Sources: https://github.com/ZwenDo/Restrikt.git
Version 4.0.0 (latest)
Created 31 March 2023.
Gradle plugin for Restrikt compiler plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("com.zwendo.restrikt") version "4.0.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("com.zwendo.restrikt:com.zwendo.restrikt.gradle.plugin:4.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.zwendo.restrikt") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.zwendo.restrikt:com.zwendo.restrikt.gradle.plugin:4.0.0") } } apply(plugin = "com.zwendo.restrikt")
- Applying plugins to all subprojects .