1
0
mirror of https://github.com/Anuken/Mindustry.git synced 2024-09-11 08:15:35 +03:00

fix assetsJar (#8641)

This commit is contained in:
WayZer 2023-05-27 21:05:08 +08:00 committed by GitHub
parent 4f34a9235c
commit c2d7e2eb72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -320,11 +320,6 @@ project(":core"){
}
}
artifacts{
archives sourcesJar
archives assetsJar
}
dependencies{
compileJava.dependsOn(preGen)
@ -442,6 +437,9 @@ configure([":core", ":server"].collect{project(it)}){
publications{
maven(MavenPublication){
from components.java
if(project.name == "core"){
artifact(tasks.named("assetsJar"))
}
}
}
}