init: 还在开发。
This commit is contained in:
34
build.gradle.kts
Normal file
34
build.gradle.kts
Normal 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)
|
||||
}
|
||||
Reference in New Issue
Block a user