On Thu, 2023-12-28 at 16:59 +0700, Andreas Reichel wrote: > On Thu, 2023-12-28 at 10:48 +0100, Ulrich Mayring wrote: > > Well, how would I know how to define this task? I want it to do > > exactly > > what "Run Single" in the IDE does. So how to write this task?
Please disregard, this one works correctly:
tasks.register('singleRun') {
dependsOn run
}
Then you can call from command line:
./gradlew singleRun -x test -x check
