diff --git a/build.gradle b/build.gradle index 4812e1e..1b30ac0 100644 --- a/build.gradle +++ b/build.gradle @@ -36,7 +36,7 @@ modsDotGroovy { multiloader { forge = [project(':neoforge')] fabric = [project(':fabriquilt')] - quilt = [] + quilt = [project(':fabriquilt')] } } diff --git a/buildSrc/src/main/groovy/convention.shared.gradle b/buildSrc/src/main/groovy/convention.shared.gradle index b3a8e3e..1846df5 100644 --- a/buildSrc/src/main/groovy/convention.shared.gradle +++ b/buildSrc/src/main/groovy/convention.shared.gradle @@ -59,14 +59,14 @@ publishing { sourcesJar { dependsOn(configurations.rootProjectLicense) from(configurations.rootProjectLicense) { - rename { "${it}_${mod_name}" } + rename { "${it}_${artifact_id}" } } } jar { dependsOn(configurations.rootProjectLicense) from(configurations.rootProjectLicense) { - rename { "${it}_${mod_name}" } + rename { "${it}_${artifact_id}" } } manifest {