Ascension/sponge/build.gradle

39 lines
848 B
Groovy
Raw Normal View History

2021-07-29 03:14:29 +02:00
apply from: rootProject.file('buildscript/runtime.gradle')
2022-03-20 12:46:06 +01:00
shadowJar {
archiveFileName = 'sponge.jarinjar'
// Relocations in buildscript/relocations.gradle
}
2021-07-29 03:14:29 +02:00
allprojects {
repositories {
exclusiveContent {
forRepository {
maven { url 'https://repo.spongepowered.org/maven/' }
}
filter {
includeGroup 'org.spongepowered'
}
}
2021-07-29 03:14:29 +02:00
}
dependencies {
// Platform
2022-04-22 19:56:11 +02:00
annotationProcessor(libs.spongeapi)
compileOnly(libs.spongeapi)
2021-07-29 03:14:29 +02:00
}
}
dependencies {
// API
annotationProcessor project(':api')
2021-07-29 03:14:29 +02:00
// Common
implementation project(':common:common-server')
// Dependency Download
2022-04-22 19:56:11 +02:00
implementation(libs.dependencydownload.jarinjar.bootstrap)
2021-07-29 03:14:29 +02:00
compileOnlyApi project(':sponge:sponge-loader')
}