plugins { `kotlin-dsl` } repositories { google() mavenCentral() gradlePluginPortal() } kotlin { jvmToolchain(17) } tasks.withType().configureEach { kotlinOptions { jvmTarget = "17" } }