hopefully let CI work again (man i can't believe no one checked in that long)

This commit is contained in:
gamma-delta 2022-05-27 17:02:51 -05:00
parent a011ce5a5d
commit bb2b784f4f
3 changed files with 7 additions and 4 deletions

View file

@ -91,8 +91,6 @@ processResources {
filesMatching("fabric.mod.json") {
expand "version": project.version
}
duplicatesStrategy 'exclude'
}
setupJar(this)

View file

@ -167,8 +167,6 @@ processResources {
filesMatching("mods.toml") {
expand "version": project.version
}
duplicatesStrategy 'exclude'
}
jar.finalizedBy('reobfJar')

View file

@ -132,6 +132,13 @@ subprojects {
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
java.withSourcesJar()
java.withJavadocJar()
processResources {
duplicatesStrategy 'exclude'
}
sourcesJar {
duplicatesStrategy 'exclude'
}
}
allprojects { gradle.projectsEvaluated { tasks.withType(JavaCompile) { options.compilerArgs << "-Xmaxerrs" << "1000" } } }