plugins { id "com.github.johnrengelman.shadow" version "7.1.0" } configurations { shadowCommon // Don't use shadow from the shadow plugin because we don't want IDEA to index this. } repositories { maven { url 'https://jitpack.io' } maven { name = "FTB" url = "https://maven.saps.dev/minecraft" } maven { name = "CurseMaven" url "https://www.cursemaven.com" } } dependencies { // We depend on fabric loader here to use the fabric @Environment annotations and get the mixin dependencies // Do NOT use other classes from fabric loader modImplementation "net.fabricmc:fabric-loader:${rootProject.loader_version}" implementation group: 'org.yaml', name: 'snakeyaml', version: '1.25' shadowCommon group: 'org.yaml', name: 'snakeyaml', version: '1.25' implementation 'com.github.BlueMap-Minecraft:BlueMapAPI:v2.2.1' } architectury { common(rootProject.enabled_platforms.split(",")) } shadowJar { relocate "org.yaml.snakeyaml", "${rootProject.maven_group}.flan.shadow.org.yaml.snakeyaml" configurations = [project.configurations.shadowCommon] } // Use the shadow jar instead of normal jar to shadow yaml lib properly into fabric builds transformProductionFabric { dependsOn shadowJar input.set shadowJar.archiveFile } publishing { publications { mavenCommon(MavenPublication) { artifactId = rootProject.archives_base_name // add all the jars that should be included when publishing to maven artifact remapJar artifact(sourcesJar) { builtBy remapSourcesJar } } } // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. repositories { // Add repositories to publish to here. } }