1234567891011121314151617181920212223242526272829303132333435 |
- loom {
- accessWidener = file("src/main/resources/architectury-common.accessWidener")
- }
- dependencies {
- // We depend on fabric loader here to use the fabric @Environment annotations
- // Do NOT use other classes from fabric loader
- modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
- implementation "net.jodah:typetools:0.6.2"
- }
- architectury {
- common()
- }
- publishing {
- publications {
- mavenCommon(MavenPublication) {
- artifactId = rootProject.archivesBaseName
- from components.java
- }
- }
- repositories {
- if (System.getenv("MAVEN_PASS") != null) {
- maven {
- url = "https://deploy.shedaniel.me/"
- credentials {
- username = "shedaniel"
- password = System.getenv("MAVEN_PASS")
- }
- }
- }
- }
- }
|