2021-07-29 03:14:29 +02:00
|
|
|
apply from: rootProject.file('buildscript/runtime.gradle')
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2022-02-03 20:43:03 +01:00
|
|
|
exclusiveContent {
|
|
|
|
forRepository {
|
|
|
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
|
|
|
}
|
|
|
|
filter {
|
|
|
|
includeGroup 'net.md-5'
|
|
|
|
}
|
|
|
|
}
|
2021-07-29 03:14:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
// Platform
|
|
|
|
compileOnly 'net.md-5:bungeecord-api:1.17-R0.1-SNAPSHOT'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-02-03 20:43:03 +01:00
|
|
|
// API
|
|
|
|
annotationProcessor project(':api')
|
|
|
|
|
2021-07-29 03:14:29 +02:00
|
|
|
// Common
|
|
|
|
implementation project(':common:common-proxy')
|
|
|
|
|
|
|
|
// DependencyDownload
|
2022-02-19 21:47:39 +01:00
|
|
|
implementation 'dev.vankka:minecraftdependencydownload-bungee:' + rootProject.mddVersion
|
2021-07-29 03:14:29 +02:00
|
|
|
|
|
|
|
// Adventure
|
|
|
|
runtimeDownloadApi 'net.kyori:adventure-platform-bungeecord:' + rootProject.adventurePlatformVersion
|
|
|
|
runtimeDownloadApi 'net.kyori:adventure-text-serializer-bungeecord:' + rootProject.adventurePlatformVersion
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
archiveFileName = 'bungee.jarinjar'
|
|
|
|
|
2022-03-01 11:26:09 +01:00
|
|
|
relocate 'net.kyori', 'com.discordsrv.dependencies.net.kyori'
|
|
|
|
// More relocations in buildscript/relocations.gradle
|
2021-07-29 03:14:29 +02:00
|
|
|
}
|