mirror of
https://github.com/DiscordSRV/Ascension.git
synced 2024-11-01 08:39:31 +01:00
14 lines
320 B
Groovy
14 lines
320 B
Groovy
// Common build script for bootstraps & standalone platforms
|
|
apply from: rootProject.file('buildscript/relocations.gradle')
|
|
|
|
jar {
|
|
dependsOn generateRuntimeDownloadResourceForRuntimeDownloadOnly
|
|
}
|
|
|
|
shadowJar {
|
|
from {
|
|
// Include translations
|
|
findProject(':i18n').sourceSets.main.resources
|
|
}
|
|
}
|