Search Gradle plugins

org.mikeneck.gradle-jdeprscan-plugin

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)

0.1

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:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.mikeneck.jdeprscan:gradle-jdeprscan-plugin:0.1")
      }
    }
    
    apply(plugin = "org.mikeneck.gradle-jdeprscan-plugin")
  • Applying plugins to all subprojects .