hopefully let CI work again (man i can't believe no one checked in that long)
This commit is contained in:
parent
a011ce5a5d
commit
bb2b784f4f
3 changed files with 7 additions and 4 deletions
|
@ -91,8 +91,6 @@ processResources {
|
|||
filesMatching("fabric.mod.json") {
|
||||
expand "version": project.version
|
||||
}
|
||||
|
||||
duplicatesStrategy 'exclude'
|
||||
}
|
||||
|
||||
setupJar(this)
|
||||
|
|
|
@ -167,8 +167,6 @@ processResources {
|
|||
filesMatching("mods.toml") {
|
||||
expand "version": project.version
|
||||
}
|
||||
|
||||
duplicatesStrategy 'exclude'
|
||||
}
|
||||
|
||||
jar.finalizedBy('reobfJar')
|
||||
|
|
|
@ -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" } } }
|
||||
|
|
Loading…
Reference in a new issue