plugins { val kotlinVersion = "2.0.20" kotlin("jvm") version kotlinVersion kotlin("plugin.jpa") version kotlinVersion kotlin("plugin.allopen") version kotlinVersion kotlin("plugin.spring") version kotlinVersion id("org.springframework.boot") version "3.4.1" id("io.spring.dependency-management") version "1.1.7" } group = "com.lanyuanxiaoyao" version = "0.0.1" java { toolchain { languageVersion = JavaLanguageVersion.of(17) } } repositories { maven("https://maven.aliyun.com/repository/central") mavenCentral() } dependencies { implementation("org.springframework.boot:spring-boot-starter-data-jpa") implementation("org.springframework.boot:spring-boot-starter-web") annotationProcessor("org.springframework.boot:spring-boot-configuration-processor") implementation("com.fasterxml.jackson.module:jackson-module-kotlin") implementation("org.jetbrains.kotlin:kotlin-reflect") val hutoolVersion = "5.8.32" implementation("cn.hutool:hutool-core:$hutoolVersion") implementation("cn.hutool:hutool-http:$hutoolVersion") implementation("cn.hutool:hutool-json:$hutoolVersion") implementation("cn.bigmodel.openapi:oapi-java-sdk:release-V4-2.3.0") implementation("com.baidubce:qianfan:0.1.1") runtimeOnly("com.h2database:h2") 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") } kotlin { compilerOptions { freeCompilerArgs.addAll("-Xjsr305=strict") } } configurations { compileOnly { extendsFrom(configurations.annotationProcessor.get()) } } allOpen { annotation("jakarta.persistence.Entity") annotation("jakarta.persistence.MappedSuperclass") annotation("jakarta.persistence.Embeddable") } tasks.withType { useJUnitPlatform() }