it depends on what type of element `bootRun` is, i...
# gradle
b
it depends on what type of element
bootRun
is, it looks like a task, so possibly:
Copy code
tasks {
    “bootRun”(BootRun::class) {
        systemProperties = System.properties
    }
}