Add new build script
This commit is contained in:
parent
c0bb5a7930
commit
404d626194
@ -1,11 +1,5 @@
|
||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||
|
||||
//buildscript {
|
||||
// repositories {
|
||||
// mavenCentral()
|
||||
// }
|
||||
//}
|
||||
|
||||
buildscript {
|
||||
val springBootVersion = "2.4.2"
|
||||
|
||||
@ -23,21 +17,24 @@ 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.modules"
|
||||
group = "com.cubetiqs"
|
||||
version = "0.0.1-SNAPSHOT"
|
||||
|
||||
val javaVersion = "11"
|
||||
|
||||
tasks.withType<JavaCompile> {
|
||||
sourceCompatibility = "11"
|
||||
targetCompatibility = "11"
|
||||
sourceCompatibility = javaVersion
|
||||
targetCompatibility = javaVersion
|
||||
}
|
||||
|
||||
tasks.withType<KotlinCompile> {
|
||||
kotlinOptions {
|
||||
freeCompilerArgs = listOf("-Xjsr305=strict")
|
||||
jvmTarget = "11"
|
||||
jvmTarget = javaVersion
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -56,6 +53,7 @@ subprojects {
|
||||
mavenBom(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
tasks.withType<org.springframework.boot.gradle.tasks.bundling.BootJar> {
|
||||
|
Loading…
Reference in New Issue
Block a user