53 lines
1.6 KiB
Groovy
53 lines
1.6 KiB
Groovy
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.
|
|
}
|
|
|
|
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'
|
|
}
|
|
|
|
architectury {
|
|
common()
|
|
}
|
|
|
|
shadowJar {
|
|
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
|
|
}
|
|
|
|
// Use the shadow jar instead of normal jar to shadow yaml lib properly into forge builds
|
|
transformProductionForge {
|
|
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.
|
|
}
|
|
} |