Hi Bartosz, Do you have an example of your attempt...
# gradle
j
Hi Bartosz, Do you have an example of your attempted port that isn't working? Be aware that:
Copy code
task 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:
Copy code
task<Jar>("coreJar") {
    // Your logic here.
}