mirror of
https://github.com/DiscordSRV/Ascension.git
synced 2024-11-01 08:39:31 +01:00
53 lines
1.3 KiB
Groovy
53 lines
1.3 KiB
Groovy
apply from: rootProject.file('buildscript/runtime.gradle')
|
|
|
|
allprojects {
|
|
repositories {
|
|
exclusiveContent {
|
|
forRepository {
|
|
maven { url 'https://papermc.io/repo/repository/maven-public/' }
|
|
}
|
|
filter {
|
|
includeGroup 'com.destroystokyo.paper'
|
|
}
|
|
}
|
|
|
|
exclusiveContent {
|
|
forRepository {
|
|
maven { url 'https://nexus.scarsz.me/content/groups/public/' }
|
|
}
|
|
filter {
|
|
includeGroup 'net.milkbowl.vault'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Platform
|
|
compileOnly 'com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// API
|
|
annotationProcessor project(':api')
|
|
|
|
// Common
|
|
compileOnly project(':common:common-server')
|
|
implementation project(path: ':common:common-server', configuration: 'runtimeElements')
|
|
|
|
// DependencyDownload
|
|
implementation 'dev.vankka:minecraftdependencydownload-bukkit:' + rootProject.mddVersion
|
|
|
|
// Adventure
|
|
runtimeDownloadApi 'net.kyori:adventure-platform-bukkit:' + rootProject.adventurePlatformVersion
|
|
|
|
// Integrations
|
|
compileOnly 'net.milkbowl.vault:VaultAPI:1.7'
|
|
}
|
|
|
|
shadowJar {
|
|
archiveFileName = 'bukkit.jarinjar'
|
|
|
|
// Relocations in buildscript/relocations.gradle
|
|
}
|