69 lines
2.1 KiB
Plaintext
69 lines
2.1 KiB
Plaintext
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|||
|
import org.springframework.boot.gradle.tasks.bundling.BootBuildImage
|
|||
|
import org.springframework.boot.gradle.tasks.run.BootRun
|
|||
|
|
|||
|
plugins {
|
|||
|
id("org.springframework.boot") version "3.1.1"
|
|||
|
id("io.spring.dependency-management") version "1.1.0"
|
|||
|
id("org.graalvm.buildtools.native") version "0.9.23"
|
|||
|
kotlin("jvm") version "1.8.22"
|
|||
|
kotlin("plugin.spring") version "1.8.22"
|
|||
|
}
|
|||
|
|
|||
|
group = "cn.edu.hfut.auto"
|
|||
|
version = "1.0.0"
|
|||
|
|
|||
|
java {
|
|||
|
sourceCompatibility = JavaVersion.VERSION_17
|
|||
|
}
|
|||
|
|
|||
|
configurations {
|
|||
|
compileOnly {
|
|||
|
extendsFrom(configurations.annotationProcessor.get())
|
|||
|
}
|
|||
|
implementation {
|
|||
|
exclude(group = "org.springframework.boot", module = "spring-boot-starter-logging")
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
repositories {
|
|||
|
mavenCentral()
|
|||
|
}
|
|||
|
|
|||
|
dependencies {
|
|||
|
implementation("org.springframework.boot:spring-boot-starter-data-elasticsearch")
|
|||
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|||
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
|||
|
// 日志
|
|||
|
implementation("org.springframework.boot:spring-boot-starter-log4j2")
|
|||
|
implementation("com.lmax:disruptor:3.4.4")
|
|||
|
// kotlin 协程(spring 异步接口)
|
|||
|
val kotlinxCoroutinesVersion = "1.7.1"
|
|||
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk9:$kotlinxCoroutinesVersion")
|
|||
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor:$kotlinxCoroutinesVersion")
|
|||
|
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
|||
|
// implementation("org.springframework.kafka:spring-kafka")
|
|||
|
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
|
|||
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|||
|
}
|
|||
|
|
|||
|
tasks.withType<BootRun> {
|
|||
|
@Suppress("SAFE_CALL_WILL_CHANGE_NULLABILITY", "UNNECESSARY_SAFE_CALL")
|
|||
|
jvmArgs = jvmArgs?.toMutableList()?.plus("-Dlog4j.skipJansi=false")
|
|||
|
}
|
|||
|
|
|||
|
tasks.withType<BootBuildImage> {
|
|||
|
imageName.set("auto/aics_query")
|
|||
|
}
|
|||
|
|
|||
|
tasks.withType<KotlinCompile> {
|
|||
|
kotlinOptions {
|
|||
|
freeCompilerArgs += "-Xjsr305=strict"
|
|||
|
jvmTarget = "17"
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
tasks.withType<Test> {
|
|||
|
useJUnitPlatform()
|
|||
|
}
|