org.hibernate.build.animal-sniffer-check
Owner: Steve Ebersole
Support for checking project API usage as defined by Animal Sniffer signature files
http://github.com/sebersole/gradle-animalSniffer-plugin
Sources: https://github.com/sebersole/gradle-animalSniffer-plugin
Version 2.0.0.Alpha1 (latest)
Created 23 April 2018.
Support for checking project API usage as defined by Animal Sniffer signature files
Add this plugin to your build using the plugins DSL:
plugins {
id("org.hibernate.build.animal-sniffer-check") version "2.0.0.Alpha1"
}
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("org.hibernate.build.animal-sniffer-check:org.hibernate.build.animal-sniffer-check.gradle.plugin:2.0.0.Alpha1") }
It can then be applied in the precompiled script plugin:plugins { id("org.hibernate.build.animal-sniffer-check") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.hibernate.build.animal-sniffer-check:org.hibernate.build.animal-sniffer-check.gradle.plugin:2.0.0.Alpha1") } } apply(plugin = "org.hibernate.build.animal-sniffer-check")
- Applying plugins to all subprojects .