org.mikeneck.gradle-jdeprscan-plugin
Owner: mike_neck
Gradle plugin that scans a use of deprecated APIs in classes built by a project using `jdeprscan` command, which is introduced since jdk9.
https://github.com/mike-neck/gradle-jdeprscan-plugin
Sources: https://github.com/mike-neck/gradle-jdeprscan-plugin
Version 0.1 (latest)
Created 22 November 2017.
Gradle plugin that scans a use of deprecated APIs in classes built by a project using `jdeprscan` command, which is introduced since jdk9.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.mikeneck.gradle-jdeprscan-plugin") version "0.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("org.mikeneck.gradle-jdeprscan-plugin:org.mikeneck.gradle-jdeprscan-plugin.gradle.plugin:0.1") }
It can then be applied in the precompiled script plugin:plugins { id("org.mikeneck.gradle-jdeprscan-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.mikeneck.gradle-jdeprscan-plugin:org.mikeneck.gradle-jdeprscan-plugin.gradle.plugin:0.1") } } apply(plugin = "org.mikeneck.gradle-jdeprscan-plugin")
- Applying plugins to all subprojects .