Search Gradle plugins

Version 1.4.999

Created 15 January 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.4.999"
}

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.4.999")
    }
    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.4.999")
      }
    }
    
    apply(plugin = "com.google.cloud.tools.linkagechecker")
  • Applying plugins to all subprojects .