Fix release build.

This commit is contained in:
modmuss50 2022-05-01 16:16:30 +01:00
parent d5120a2426
commit 3847c74085
2 changed files with 3 additions and 5 deletions

View file

@ -91,6 +91,9 @@ def moduleDependencies(project, List<String> depNames) {
allprojects {
group = "net.fabricmc.fabric-api"
apply plugin: "maven-publish"
apply plugin: "me.modmuss50.remotesign"
tasks.withType(GenerateModuleMetadata) {
enabled = false
}
@ -116,10 +119,8 @@ allprojects {
apply plugin: "java-library"
apply plugin: "checkstyle"
apply plugin: "maven-publish"
apply plugin: "fabric-loom"
apply plugin: "com.diffplug.spotless"
apply plugin: "me.modmuss50.remotesign"
tasks.withType(JavaCompile).configureEach {
it.options.release = 17

View file

@ -1,9 +1,6 @@
/**
* This project generates a maven bill of materials (BOM) that includes the deprecated modules, alongside the main project.
*/
apply plugin: "maven-publish"
version = rootProject.version
publishing {