Excluded comp** from final jar

This commit is contained in:
Anuken
2021-04-03 11:15:41 -04:00
parent 19778c743c
commit 93f3d6039e
5 changed files with 7 additions and 3 deletions

View File

@@ -395,6 +395,11 @@ project(":core"){
destinationDir = new File(buildDir, 'javadoc')
}
}
//comp** classes are only used for code generation
jar{
exclude("mindustry/entities/comp/**")
}
}
project(":server"){