diff --git a/build.gradle.kts b/build.gradle.kts index 57406a7..49e1716 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,11 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile +//buildscript { +// repositories { +// mavenCentral() +// } +//} + buildscript { val springBootVersion = "2.4.2" @@ -17,24 +23,21 @@ plugins { id("io.spring.dependency-management") version "1.0.11.RELEASE" apply false kotlin("jvm") version "1.4.21" apply false kotlin("plugin.spring") version "1.4.21" apply false - kotlin("plugin.jpa") version "1.4.21" apply false } allprojects { - group = "com.cubetiqs" + group = "com.cubetiqs.modules" version = "0.0.1-SNAPSHOT" - val javaVersion = "11" - tasks.withType { - sourceCompatibility = javaVersion - targetCompatibility = javaVersion + sourceCompatibility = "11" + targetCompatibility = "11" } tasks.withType { kotlinOptions { freeCompilerArgs = listOf("-Xjsr305=strict") - jvmTarget = javaVersion + jvmTarget = "11" } } } @@ -53,7 +56,6 @@ subprojects { mavenBom(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES) } } - } tasks.withType {