Tomas Pekarek
05/19/2020, 7:34 AMtasks{
"bootJar"(BootJar::class) {
archiveFileName.set("imps.jar")
}}
I was wondering what kind of language construct allows me to write string followed by (). I mean "bootJar"(BootJar::class). What is that?
--
I found that string boot initializer uses
withType<Test> {
useJUnitPlatform()
}
What is the preferred way to modify tasks?octylFractal
05/19/2020, 7:36 AMString.invoke()
is declared on DependencyHandlerScope
no
05/19/2020, 7:36 AMoctylFractal
05/19/2020, 7:36 AMTomas Pekarek
05/19/2020, 7:50 AM