Aha. After updating the Kotlin IDE Plugin it's cle...
# gradle
m
Aha. After updating the Kotlin IDE Plugin it's clear that
configurations.archive
is now another type which wraps a
Configuration
. So this one it is now:
Copy code
signing {
    sign(configurations.archives.get())
}