Upgraded kotlin to 1.4.31

Fixed build script
This commit is contained in:
Sambo Chea 2021-02-27 21:46:17 +07:00
parent 2802994eed
commit 33894b5ebe

View File

@ -15,16 +15,16 @@ buildscript {
plugins { plugins {
id("org.springframework.boot") version "2.4.3" apply false id("org.springframework.boot") version "2.4.3" apply false
id("io.spring.dependency-management") version "1.0.11.RELEASE" apply false id("io.spring.dependency-management") version "1.0.11.RELEASE" apply false
kotlin("jvm") version "1.4.30" apply false kotlin("jvm") version "1.4.31" apply false
kotlin("plugin.spring") version "1.4.30" apply false kotlin("plugin.spring") version "1.4.31" apply false
kotlin("plugin.jpa") version "1.4.30" apply false kotlin("plugin.jpa") version "1.4.31" apply false
} }
allprojects { allprojects {
group = "com.cubetiqs" group = "com.cubetiqs"
version = "0.0.1-SNAPSHOT" version = "0.0.1-SNAPSHOT"
val javaVersion = JavaVersion.VERSION_11 val javaVersion = "11"
tasks.withType<JavaCompile> { tasks.withType<JavaCompile> {
sourceCompatibility = javaVersion sourceCompatibility = javaVersion