<How to put custom Gradle plugins on an another pr...
# stackoverflow
u
How to put custom Gradle plugins on an another projects build classpath? I have a published gradle plugin which looks something like this: |__root | | | | | |__java | | |__SomeJavaClass.java | | |__SomeJavaClass2.java | | | |__kotlin | |__MyPluginClass.kts | |__MyTaskClass.kts | |__Utils.kts I would like to include this plugin as a project in my multi project build instead of publishing it to a repo for easier developement. This plugin has 3 Kotlin files Project A is using. MyPluginClass.kts has my...