i have two gradle tasks, `./gradlew build` and `./...
# getting-started
c
i have two gradle tasks,
./gradlew build
and
./gradlew run
. is it possible to specify
--console=plain
inside the
build.gradle.kts
file on one of them so i don't have to keep typing the flag?
k
You can put
org.gradle.console=plain
in your
gradle.properties
file.
c
but that would apply to all the tasks. i only want it to apply to one task