Open-source multiplayer game server compatible with the RuneScape client https://www.openrs2.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openrs2/settings.gradle.kts

64 lines
1.1 KiB

rootProject.name = "openrs2"
dependencyResolutionManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven(url = "https://repo.openrs2.org/repository/openrs2")
maven(url = "https://repo.runelite.net")
mavenLocal()
maven(url = "https://repo.openrs2.org/repository/openrs2-snapshots")
}
}
pluginManagement {
plugins {
kotlin("jvm") version "1.9.21"
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(
"all",
"archive",
"asm",
"buffer",
"buffer-generator",
"cache",
"cache-550",
"cache-cli",
"cli",
"compress",
"compress-cli",
"conf",
"crc32",
"crypto",
"db",
"decompiler",
"deob",
"deob-annotations",
"deob-ast",
"deob-bytecode",
"deob-processor",
"deob-util",
"game",
"http",
"inject",
"json",
"log",
"net",
"nonfree",
"nonfree:client",
"nonfree:gl",
"nonfree:loader",
"nonfree:signlink",
"nonfree:unpack",
"nonfree:unpackclass",
"patcher",
"protocol",
"util",
"xtea-plugin",
"yaml"
)