76 lines
2.1 KiB
Kotlin
76 lines
2.1 KiB
Kotlin
plugins {
|
|
kotlin("jvm") version "2.0.20"
|
|
kotlin("plugin.spring") version "2.0.20"
|
|
id("org.springframework.boot") version "3.4.4"
|
|
id("io.spring.dependency-management") version "1.1.7"
|
|
}
|
|
|
|
group = "com.lanyuanxiaoyao"
|
|
version = "0.0.1-SNAPSHOT"
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom(configurations.annotationProcessor.get())
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url = uri("https://maven.lanyuanxiaoyao.com/central")
|
|
credentials {
|
|
username = "lanyuanxiaoyao"
|
|
password = "cL9AFT6VkNlrK8TyYI43RSW8OhtTYzg6GPc1bXzBmnsXeU9T/X6S0q//K5TDZF1g"
|
|
}
|
|
}
|
|
}
|
|
|
|
extra["springAiVersion"] = "1.0.0-M6"
|
|
|
|
dependencies {
|
|
implementation("cn.hutool:hutool-all:5.8.36")
|
|
|
|
implementation("com.github.javaparser:javaparser-core:3.26.3")
|
|
implementation("com.github.javaparser:javaparser-symbol-solver-core:3.26.3")
|
|
implementation("com.github.javaparser:javaparser-core-serialization:3.26.3")
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-webflux")
|
|
implementation("org.springframework.boot:spring-boot-starter-jdbc")
|
|
implementation("org.springframework.ai:spring-ai-openai-spring-boot-starter")
|
|
|
|
implementation("com.mysql:mysql-connector-j")
|
|
|
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
|
implementation("io.projectreactor.kotlin:reactor-kotlin-extensions")
|
|
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
|
|
testImplementation("io.projectreactor:reactor-test")
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test-junit5")
|
|
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test")
|
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
|
}
|
|
|
|
dependencyManagement {
|
|
imports {
|
|
mavenBom("org.springframework.ai:spring-ai-bom:${property("springAiVersion")}")
|
|
}
|
|
}
|
|
|
|
kotlin {
|
|
compilerOptions {
|
|
freeCompilerArgs.addAll("-Xjsr305=strict")
|
|
}
|
|
}
|
|
|
|
tasks.withType<Test> {
|
|
useJUnitPlatform()
|
|
}
|