scext-onedrive-transfer/build.gradle.kts

23 lines
357 B
Plaintext

import java.net.URI
plugins {
kotlin("jvm") version "2.1.0" apply false
}
group = "net.lamgc.scext"
version = "0.1.0-SNAPSHOT"
allprojects {
repositories {
mavenLocal()
mavenCentral()
maven {
url = URI.create("https://git.lamgc.me/api/packages/LamGC/maven")
name = "lam-gitea"
}
}
}