140 lines
4.3 KiB
Groovy
140 lines
4.3 KiB
Groovy
plugins {
|
|
id 'fabric-loom' // version "1.0-SNAPSHOT"
|
|
}
|
|
|
|
archivesBaseName = getArtifactID("fabric")
|
|
|
|
loom {
|
|
mixin.defaultRefmapName = "hexcasting.mixins.refmap.json"
|
|
|
|
accessWidenerPath = file("src/main/resources/fabricasting.accesswidener")
|
|
|
|
runs {
|
|
client {
|
|
client()
|
|
setConfigName("Fabric Client")
|
|
}
|
|
server {
|
|
server()
|
|
setConfigName("Fabric Server")
|
|
}
|
|
datagen {
|
|
client()
|
|
vmArg "-Dfabric-api.datagen"
|
|
vmArg "-Dfabric-api.datagen.modid=${modID}"
|
|
vmArg "-Dfabric-api.datagen.output-dir=${file("src/generated/resources")}"
|
|
}
|
|
|
|
configureEach {
|
|
runDir "Fabric/run"
|
|
ideConfigGenerated(true)
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url "https://maven.shedaniel.me/" }
|
|
maven {
|
|
url 'https://ladysnake.jfrog.io/artifactory/mods'
|
|
}
|
|
maven {
|
|
name "entity reach"
|
|
url "https://maven.jamieswhiteshirt.com/libs-release/"
|
|
}
|
|
maven { url "https://mvn.devos.one/snapshots/" }
|
|
maven {
|
|
name = "TerraformersMC"
|
|
url = "https://maven.terraformersmc.com/releases/"
|
|
}
|
|
exclusiveContent {
|
|
forRepository {
|
|
maven {
|
|
name = "Modrinth"
|
|
url = "https://api.modrinth.com/maven"
|
|
}
|
|
}
|
|
filter {
|
|
includeGroup "maven.modrinth"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
minecraft "com.mojang:minecraft:${minecraftVersion}"
|
|
mappings loom.officialMojangMappings()
|
|
modImplementation("net.fabricmc:fabric-language-kotlin:1.7.4+kotlin.1.6.21")
|
|
modImplementation "net.fabricmc:fabric-loader:${fabricLoaderVersion}"
|
|
modImplementation "net.fabricmc.fabric-api:fabric-api:${fabricVersion}"
|
|
|
|
// Reqs
|
|
compileOnly "org.jetbrains:annotations:$jetbrainsAnnotationsVersion"
|
|
testCompileOnly "org.jetbrains:annotations:$jetbrainsAnnotationsVersion"
|
|
compileOnly "com.demonwav.mcdev:annotations:1.0"
|
|
|
|
implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.1'
|
|
compileOnly project(":Common")
|
|
|
|
modImplementation "at.petra-k.paucal:paucal-fabric-$minecraftVersion:$paucalVersion"
|
|
modImplementation "vazkii.patchouli:Patchouli:$minecraftVersion-$patchouliVersion-FABRIC"
|
|
|
|
modImplementation "dev.onyxstudios.cardinal-components-api:cardinal-components-api:$cardinalComponentsVersion"
|
|
|
|
modImplementation "com.jamieswhiteshirt:reach-entity-attributes:${entityReachVersion}"
|
|
include "com.jamieswhiteshirt:reach-entity-attributes:${entityReachVersion}"
|
|
|
|
// apparently the 1.18 version Just Works on 1.19
|
|
modImplementation "io.github.tropheusj:serialization-hooks:$serializationHooksVersion"
|
|
include "io.github.tropheusj:serialization-hooks:$serializationHooksVersion"
|
|
|
|
// Optional integrations
|
|
|
|
modApi("me.shedaniel.cloth:cloth-config-fabric:$clothConfigVersion") {
|
|
exclude(group: "net.fabricmc.fabric-api")
|
|
}
|
|
|
|
modImplementation "dev.emi:trinkets:$trinketsVersion"
|
|
modImplementation "dev.emi:emi:${emiVersion}"
|
|
|
|
modImplementation "maven.modrinth:gravity-api:$gravityApiVersion"
|
|
modApi("com.github.Virtuoel:Pehkui:${pehkuiVersion}", {
|
|
exclude group: "net.fabricmc.fabric-api"
|
|
})
|
|
|
|
// *Something* is including an old version of modmenu with a broken mixin
|
|
// We can't figure out what it is
|
|
// so i'm just including a fresher version
|
|
modImplementation("com.terraformersmc:modmenu:$modmenuVersion")
|
|
|
|
// i am speed
|
|
// sodium is causing frustum mixin errors so don't use it
|
|
// modImplementation "maven.modrinth:sodium:${sodiumVersion}"
|
|
modImplementation "maven.modrinth:lithium:${lithiumVersion}"
|
|
modImplementation "maven.modrinth:phosphor:${phosphorVersion}"
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
source(project(":Common").sourceSets.main.allSource)
|
|
}
|
|
compileKotlin {
|
|
source(project(":Common").sourceSets.main.kotlin)
|
|
}
|
|
|
|
sourcesJar {
|
|
from project(":Common").sourceSets.main.allJava
|
|
}
|
|
|
|
sourceSets {
|
|
main.resources.srcDirs += ['src/generated/resources', '../Common/src/generated/resources']
|
|
}
|
|
|
|
processResources {
|
|
from project(":Common").sourceSets.main.resources
|
|
inputs.property "version", project.version
|
|
|
|
filesMatching("fabric.mod.json") {
|
|
expand "version": project.version
|
|
}
|
|
}
|
|
|
|
setupJar(this)
|