87 lines
2.4 KiB
Kotlin
87 lines
2.4 KiB
Kotlin
plugins {
|
|
kotlin("jvm") version "2.0.20"
|
|
kotlin("plugin.spring") version "2.0.20"
|
|
kotlin("plugin.jpa") version "2.0.20"
|
|
kotlin("plugin.allopen") version "2.0.20"
|
|
id("org.springframework.boot") version "3.3.5"
|
|
id("io.spring.dependency-management") version "1.1.6"
|
|
}
|
|
|
|
group = "com.lanyuanxiaoyao"
|
|
version = "0.0.1"
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
allOpen {
|
|
annotations("javax.persistence.Entity")
|
|
}
|
|
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom(configurations.annotationProcessor.get())
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url = uri("http://localhost:3105/threepartrepo")
|
|
isAllowInsecureProtocol = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.lanyuanxiaoyao:squirrel-core-jvm:1.0.0-SNAPSHOT") {
|
|
exclude("commons-logging", "commons-logging")
|
|
}
|
|
implementation("dev.failsafe:failsafe:3.3.2")
|
|
implementation("cn.bigmodel.openapi:oapi-java-sdk:release-V4-2.3.0")
|
|
implementation("com.baidubce:qianfan:0.1.1")
|
|
implementation("org.jsoup:jsoup:1.18.1")
|
|
|
|
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.hutool:hutool-crypto:$hutoolVersion")
|
|
|
|
implementation("org.springframework.retry:spring-retry")
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
|
implementation("org.springframework.boot:spring-boot-starter")
|
|
implementation("org.springframework.boot:spring-boot-starter-mail")
|
|
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
|
|
|
|
runtimeOnly("com.h2database:h2")
|
|
runtimeOnly("com.mysql:mysql-connector-j:9.1.0")
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0")
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
|
// implementation("org.jetbrains.kotlin:kotlin-scripting-jsr223")
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
|
}
|
|
|
|
kotlin {
|
|
compilerOptions {
|
|
freeCompilerArgs.addAll("-Xjsr305=strict")
|
|
}
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
|
|
// exclude("**/*Test.class")
|
|
}
|
|
|
|
configurations.all {
|
|
resolutionStrategy {
|
|
cacheChangingModulesFor(0, TimeUnit.SECONDS)
|
|
}
|
|
}
|