import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { id("org.springframework.boot") version "3.0.2" apply false id("io.spring.dependency-management") version "1.1.0" apply false kotlin("jvm") version "1.8.0" apply false kotlin("plugin.spring") version "1.8.0" apply false kotlin("plugin.jpa") version "1.8.0" apply false id("com.netflix.dgs.codegen") version "5.6.6" apply false } allprojects { repositories { mavenCentral() } group = "com.cubetiqs" version = "0.0.1-SNAPSHOT" val javaVersion = "17" tasks.withType { sourceCompatibility = javaVersion targetCompatibility = javaVersion } tasks.withType { kotlinOptions { freeCompilerArgs = listOf("-Xjsr305=strict") jvmTarget = javaVersion } } } subprojects { apply { plugin("io.spring.dependency-management") } the().apply { imports { mavenBom(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES) } } }