init: 还在开发。

This commit is contained in:
2024-01-04 08:48:53 +08:00
commit f5cb9e5a0d
12 changed files with 472 additions and 0 deletions

34
build.gradle.kts Normal file
View File

@ -0,0 +1,34 @@
import java.net.URI
plugins {
kotlin("jvm") version "1.9.21"
}
group = "net.lamgc.scext"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
url = URI.create("https://git.lamgc.me/api/packages/LamGC/maven")
name = "lam-gitea"
}
}
dependencies {
implementation("org.slf4j:slf4j-api:2.0.10")
implementation("net.lamgc:scalabot-extension:0.6.1")
implementation("com.microsoft.graph:microsoft-graph:5.77.0")
implementation("com.azure:azure-identity:1.11.1")
testImplementation("org.jetbrains.kotlin:kotlin-test")
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
}