com.google.cloud.tools.linkagechecker
Tool to verify the compatibility of the class paths of Gradle projects
https://github.com/GoogleCloudPlatform/cloud-opensource-java/wiki/Linkage-Checker-with-Gradle
Sources: https://github.com/GoogleCloudPlatform/cloud-opensource-java.git
Version 1.5.13 (latest)
Created 10 November 2022.
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.13"
}
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.13") }
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.13") } } apply(plugin = "com.google.cloud.tools.linkagechecker")
- Applying plugins to all subprojects .