hey quick question , lets say im bulding a gradle ...
# gradle
r
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
You add the particular version to your plugin's dependencies and then apply the plugin by its class in code.
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