2021-07-29 03:14:29 +02:00
|
|
|
apply from: rootProject.file('buildscript/runtime.gradle')
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
maven { url 'https://papermc.io/repo/repository/maven-public/' }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
// API
|
|
|
|
annotationProcessor project(':api')
|
|
|
|
|
|
|
|
// Platform
|
|
|
|
compileOnly 'com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
// Common
|
2021-10-25 01:04:46 +02:00
|
|
|
compileOnly project(':common:common-server')
|
|
|
|
implementation project(path: ':common:common-server', configuration: 'runtimeElements')
|
2021-07-29 03:14:29 +02:00
|
|
|
|
|
|
|
// DependencyDownload
|
|
|
|
implementation 'dev.vankka.minecraftdependencydownload:bukkit:' + rootProject.mddVersion
|
|
|
|
|
|
|
|
// Adventure
|
|
|
|
runtimeDownloadApi 'net.kyori:adventure-platform-bukkit:' + rootProject.adventurePlatformVersion
|
2022-01-18 21:15:43 +01:00
|
|
|
|
|
|
|
// Integrations
|
|
|
|
compileOnly "com.github.MilkBowl:VaultAPI:1.7"
|
2021-07-29 03:14:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
archiveFileName = 'bukkit.jarinjar'
|
|
|
|
|
2022-01-17 15:54:01 +01:00
|
|
|
// Relocations in buildscript/relocations.gradle
|
2021-07-29 03:14:29 +02:00
|
|
|
}
|