Ascension/bukkit/build.gradle

37 lines
950 B
Groovy
Raw Normal View History

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
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
// Integrations
compileOnly "com.github.MilkBowl:VaultAPI:1.7"
2021-07-29 03:14:29 +02:00
}
shadowJar {
archiveFileName = 'bukkit.jarinjar'
// Relocations in buildscript/relocations.gradle
2021-07-29 03:14:29 +02:00
}