If anyone ends up here trying to fix 'jvmTarget is deprecated':
kotlinOptions { jvmTarget = '11' }
Change it to this:
kotlin { compilerOptions { jvmTarget = JvmTarget.JVM_11 } }