48 lines
1.4 KiB
Plaintext
48 lines
1.4 KiB
Plaintext
|
plugins {
|
||
|
id("org.springframework.boot") version "3.3.0"
|
||
|
id("io.spring.dependency-management") version "1.1.5"
|
||
|
kotlin("jvm") version "2.0.0"
|
||
|
kotlin("plugin.spring") version "2.0.0"
|
||
|
}
|
||
|
|
||
|
group = "org.echo"
|
||
|
version = "0.0.1-SNAPSHOT"
|
||
|
|
||
|
java {
|
||
|
toolchain {
|
||
|
languageVersion = JavaLanguageVersion.of(21)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation("org.springframework.boot:spring-boot-starter-data-jdbc")
|
||
|
implementation("org.springframework.boot:spring-boot-starter-freemarker")
|
||
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
||
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
||
|
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
||
|
implementation("org.projectlombok:lombok")
|
||
|
runtimeOnly("com.mysql:mysql-connector-j")
|
||
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
||
|
testImplementation("org.jetbrains.kotlin:kotlin-test-junit5")
|
||
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
||
|
|
||
|
//使用携程来处理阻塞的数据库操作
|
||
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core")
|
||
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
|
||
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-slf4j")
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
compilerOptions {
|
||
|
freeCompilerArgs.addAll("-Xjsr305=strict")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tasks.withType<Test> {
|
||
|
useJUnitPlatform()
|
||
|
}
|