org.hibernate.build.animal-sniffer-generate
Owner: Steve Ebersole
Support for generating a Animal Sniffer signature file for the project API
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 generating a Animal Sniffer signature file for the project API
Add this plugin to your build using the plugins DSL:
plugins {
id("org.hibernate.build.animal-sniffer-generate") 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-generate:org.hibernate.build.animal-sniffer-generate.gradle.plugin:2.0.0.Alpha1") }
It can then be applied in the precompiled script plugin:plugins { id("org.hibernate.build.animal-sniffer-generate") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.hibernate.build.animal-sniffer-generate:org.hibernate.build.animal-sniffer-generate.gradle.plugin:2.0.0.Alpha1") } } apply(plugin = "org.hibernate.build.animal-sniffer-generate")
- Applying plugins to all subprojects .