ru.vyarus.animalsniffer
Owner: Vyacheslav Rusakov
Gradle AnimalSniffer plugin for Java projects
https://github.com/xvik/gradle-animalsniffer-plugin
Sources: https://github.com/xvik/gradle-animalsniffer-plugin.git
Version 1.7.2 (latest)
Created 18 November 2024.
Gradle AnimalSniffer plugin for Java, Groovy, Kotlin and Scala projects
Add this plugin to your build using the plugins DSL:
plugins {
id("ru.vyarus.animalsniffer") version "1.7.2"
}
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("ru.vyarus.animalsniffer:ru.vyarus.animalsniffer.gradle.plugin:1.7.2") }
It can then be applied in the precompiled script plugin:plugins { id("ru.vyarus.animalsniffer") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ru.vyarus.animalsniffer:ru.vyarus.animalsniffer.gradle.plugin:1.7.2") } } apply(plugin = "ru.vyarus.animalsniffer")
- Applying plugins to all subprojects .