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