44 lines
1.1 KiB
Kotlin
44 lines
1.1 KiB
Kotlin
plugins {
|
|
kotlin("jvm") version "2.0.10"
|
|
kotlin("plugin.spring") version "2.0.10"
|
|
id("org.springframework.boot") version "3.3.3"
|
|
id("io.spring.dependency-management") version "1.1.6"
|
|
}
|
|
|
|
group = "com.lanyuanxiaoyao"
|
|
version = "0.0.1-SNAPSHOT"
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url = uri("http://localhost:3105/threepartrepo")
|
|
isAllowInsecureProtocol = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.seleniumhq.selenium:selenium-java:4.23.1")
|
|
|
|
implementation("cn.hutool:hutool-core:5.8.16")
|
|
implementation("cn.hutool:hutool-http:5.8.16")
|
|
implementation("cn.hutool:hutool-crypto:5.8.16")
|
|
|
|
implementation("org.springframework.retry:spring-retry")
|
|
implementation("org.springframework.boot:spring-boot-starter")
|
|
implementation("org.springframework.boot:spring-boot-starter-mail")
|
|
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
|
}
|
|
|
|
kotlin {
|
|
compilerOptions {
|
|
freeCompilerArgs.addAll("-Xjsr305=strict")
|
|
}
|
|
}
|