scext-onedrive-transfer/build.gradle.kts
2024-01-04 08:48:53 +08:00

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)
}