dev.youshallnotpass
Owner: Alexey Nikitin
Youshallnotpass - is the plugin for failing not elegant projects
https://github.com/youshallnotpass-dev/java-plugin-gradle
Sources: https://github.com/youshallnotpass-dev/java-plugin-gradle.git
Version 0.6.1 (latest)
Created 18 June 2021.
Youshallnotpass - is the plugin for failing not elegant projects
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.youshallnotpass") version "0.6.1"
}
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("dev.youshallnotpass:dev.youshallnotpass.gradle.plugin:0.6.1") }
It can then be applied in the precompiled script plugin:plugins { id("dev.youshallnotpass") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.youshallnotpass:dev.youshallnotpass.gradle.plugin:0.6.1") } } apply(plugin = "dev.youshallnotpass")
- Applying plugins to all subprojects .