Hello! Does anybody know what the simplest way to register several run tasks that represent exact copy of original one with changed app arguments ?
Copy code
gradle run --args='--mode=middle' ---> gradle run
gradle run --args='--mode=greed' ---> gradle runGreed OR gradle run greed
gradle run --args='--mode=lavish' ---> gradle runLavish OR gradle run lavish
o
octylFractal
06/14/2020, 9:12 PM
do you want to literally do it like that on the Gradle command line, or just do
gradle runGreed
?
y
Yevhenii Nadtochii
06/14/2020, 9:21 PM
to literally do it like that on the Gradle command line
I have no idea what it means 🙃
Basically, I was wondering about