hey quick question , lets say im bulding a gradle plugin , and i want it to apply a plugin with a version .For instance
Copy code
id("com.google.devtools.ksp") version "1.6.10-1.0.2"
b
Big Chungus
05/13/2022, 6:26 AM
You add the particular version to your plugin's dependencies and then apply the plugin by its class in code.
Big Chungus
05/13/2022, 6:27 AM
This does leave it exposed to usual gradle dependency resolution on consumer side, so if you want to pin the version use regular version management APIs in your plugin's buildscript