Testing mp3 sounds + hiding servers

This commit is contained in:
Anuken
2020-11-09 14:33:28 -05:00
parent 43e6da0fed
commit fe27ac6aec
144 changed files with 161 additions and 70 deletions

View File

@@ -172,11 +172,20 @@ allprojects{
jcenter()
}
task clearCache{
doFirst{
delete{
delete "$rootDir/core/assets/cache"
}
}
}
tasks.withType(JavaCompile){
targetCompatibility = 8
sourceCompatibility = 14
options.encoding = "UTF-8"
options.compilerArgs += ["-Xlint:deprecation"]
dependsOn clearCache
}
}