Search Gradle plugins

Version 1.5.9

Created 10 May 2021.

Tool to verify the compatibility of the class paths of Gradle projects

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.google.cloud.tools.linkagechecker") version "1.5.9"
}

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("com.google.cloud.tools.linkagechecker:com.google.cloud.tools.linkagechecker.gradle.plugin:1.5.9")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.google.cloud.tools.linkagechecker")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.google.cloud.tools.linkagechecker:com.google.cloud.tools.linkagechecker.gradle.plugin:1.5.9")
      }
    }
    
    apply(plugin = "com.google.cloud.tools.linkagechecker")
  • Applying plugins to all subprojects .