35 lines
652 B
Plaintext
35 lines
652 B
Plaintext
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)
|
|
}
|