Buildscript cleanup

This commit is contained in:
Anuken
2021-03-24 12:41:50 -04:00
parent ace6eed653
commit 0929593efc
2 changed files with 6 additions and 11 deletions
+5 -10
View File
@@ -319,32 +319,27 @@ project(":core"){
}
task sourcesJar(type: Jar, dependsOn: classes){
classifier = 'sources'
archiveClassifier = 'sources'
from sourceSets.main.allSource
}
task assetsJar(type: Jar, dependsOn: ":tools:pack"){
classifier = 'assets'
archiveClassifier = 'assets'
from files("assets"){
exclude "config"
exclude "cache"
exclude "music"
exclude "sounds"
exclude "config", "cache", "music", "sounds"
}
}
task musicJar(type: Jar){
classifier = 'music'
archiveClassifier = 'music'
from files("assets"){
include "music/*"
include "sounds/*"
include "music/*", "sounds/*"
}
}
artifacts{
archives sourcesJar
archives assetsJar
archives musicJar
}
dependencies{