Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion neoforge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ dependencies {
exclude group: "me.fallenbreath"
})

jarJar(runtimeOnly(project(path: ":sable_rapier", configuration: "runtimeElements")))
jarJar(runtimeOnly(project(path: ":sable_rapier", configuration: "namedElements")))

compileOnly("foundry.imguimc:imguimc-neoforge-${project.minecraft_version}:${project.imguimc_version}")
}
17 changes: 7 additions & 10 deletions sable_rapier/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {

plugins {
id 'multiloader-common'
id 'net.neoforged.moddev'
id 'net.fabricmc.fabric-loom-remap'
}

import net.jpountz.lz4.LZ4FrameOutputStream
Expand Down Expand Up @@ -211,15 +211,6 @@ repositories {
mavenCentral()
}

neoForge {
neoFormVersion = neo_form_version

parchment {
minecraftVersion = parchment_minecraft
mappingsVersion = parchment_version
}
}

configurations {
commonJava {
canBeResolved = false
Expand All @@ -232,6 +223,12 @@ configurations {
}

dependencies {
minecraft "com.mojang:minecraft:${minecraft_version}"
mappings loom.layered {
officialMojangMappings()
parchment("org.parchmentmc.data:parchment-${parchment_minecraft}:${parchment_version}@zip")
}

implementation "org.apache.maven:maven-artifact:3.8.5"

compileOnly(project(':common')) {
Expand Down