mirror of https://github.com/usbharu/Hideout.git
18 lines
352 B
Plaintext
18 lines
352 B
Plaintext
plugins {
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
|
|
}
|
|
rootProject.name = "hideout-worker"
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
versionCatalogs {
|
|
create("libs") {
|
|
from(files("../libs.versions.toml"))
|
|
}
|
|
}
|
|
}
|
|
|
|
includeBuild("../hideout-core") |