Is it btw safe to do: ``` tasks { "bootRun"(B...
# gradle
m
Is it btw safe to do:
Copy code
tasks {
    "bootRun"(BootRun::class) {
        systemProperties = System.properties
    }
}

tasks {
    withType<KotlinCompile> {
        kotlinOptions {
            jvmTarget = javaVersion
        }
    }
}
or is the second tasks block overwriting the first one?