1
0

feat: 完成基本功能

This commit is contained in:
2024-09-30 10:26:02 +08:00
commit 9bcd247bae
15 changed files with 717 additions and 0 deletions

43
build.gradle.kts Normal file
View File

@@ -0,0 +1,43 @@
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")
}
}