Ascension/bungee/build.gradle

42 lines
1.1 KiB
Groovy
Raw Normal View History

2021-07-29 03:14:29 +02:00
apply from: rootProject.file('buildscript/runtime.gradle')
allprojects {
repositories {
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 {
// 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'
relocate 'net.kyori', 'com.discordsrv.dependencies.net.kyori'
// More relocations in buildscript/relocations.gradle
2021-07-29 03:14:29 +02:00
}