There are two ways now ``` tasks { "war"(War::c...
# gradle
z
There are two ways now
Copy code
tasks {
   "war"(War::class) {
      archiveName = "myapp.war"
   }
}
or
Copy code
val war: War by tasks // Now your task in variable [war]
war.archiveName = "myapp.war"
1 reply Do you plan shorter syntax in the future, something similar to how "application" works?