I'm trying to update my buildscript from an old ni...
# gradle
b
I'm trying to update my buildscript from an old nightly build of 4.10 that is now gone to actual 4.10, and I got an issue I can't figure out: https://paste.pound-python.org/show/2Dhpt2pDUCG9lPJv0Hib/ Changes I did: first, accessing tasks with
"taskname"()
no longer worked so I had to change it to
tasks["taskname"]
. Second change is that for some reason, it couldn't find uploadArchives task in
tasks{}
block, so I tried to create the task instead with
val uploadArchives by tasks.creating(Upload::class) {/*things*/}
and now I'm at the point where it throws this exception. Any idea what may cause it?