jlleitschuh
10/11/2017, 6:05 PMtask coreJar(type: Jar) {
//...
}
Is creating a task called coreJar
, not pulling it from some task created by a plugin.
The syntax to convert that to kotlin would be:
task<Jar>("coreJar") {
// Your logic here.
}