[Feature Request] Add ./gradlew :plugins:xyz:run #11839
Labels
Build
Build Tasks/Gradle Plugin, groovy scripts, build tools, Javadoc enforcement.
enhancement
Enhancement or improvement to existing feature or request
Is your feature request related to a problem? Please describe
Developers want an easy way to run a plugin during development.
Describe the solution you'd like
In #11844 we've added the ability to do
./gradlew run -PinstalledPlugins="['plugin1', 'plugin2']"
. For one plugin this is a bit of a convoluted syntax (the name can't beplugins
), so I'd like to be able to do./gradlew :plugins:xyz:run
when developing anxyz
plugin in theplugins
folder which should end up doing what./gradlew run -PinstalledPlugins="['xyz']"
does.Related component
Build
Describe alternatives you've considered
Currently you can modify
gradle/run.gradle
as follows.Additional context
Some people might want to load more than one plugin via command line.
The text was updated successfully, but these errors were encountered: