Skip to content

Commit

Permalink
gradle update and soft jade dependency for testing mineable
Browse files Browse the repository at this point in the history
  • Loading branch information
Lothrazar committed Aug 22, 2024
1 parent 135cf27 commit 99711e2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
13 changes: 12 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,14 @@ minecraft {
client {
// Comma-separated list of namespaces to load gametests from. Empty = all namespaces.
property 'forge.enabledGameTestNamespaces', mod_id
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
}

server {
property 'forge.enabledGameTestNamespaces', mod_id
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
args '--nogui'
}

Expand Down Expand Up @@ -123,6 +127,7 @@ repositories {
url = 'https://maven.theillusivec4.top/'
}
maven { url = 'https://maven.blamejared.com' }
maven { url = 'https://modmaven.dev' }
maven { url = 'https://www.cursemaven.com' }
}

Expand All @@ -132,8 +137,14 @@ dependencies {
// The "userdev" classifier will be requested and setup by ForgeGradle.
// If the group id is "net.minecraft" and the artifact id is one of ["client", "server", "joined"],
// then special handling is done to allow a setup of a vanilla dependency without the use of an external repository.
minecraft "net.neoforged:forge:${mc_version}-${forge_version}"
minecraft "net.neoforged:forge:${mc_version}-${neo_version}"


//optional integrations

// implementation fg.deobf("curse.maven:cyclic-239286:5620124")
implementation fg.deobf("curse.maven:jade-324717:5640610")

// required dependency
implementation fg.deobf("curse.maven:flib-661261:${flib_file}")

Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ mod_id=absentbydesign
curse_id=305840
mod_version=1.8.1-SNAPSHOT

neo_version=47.1.104
forge_version=47.1.104

mod_name=Absent by Design
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.registries.RegisterEvent;
import net.minecraftforge.registries.RegistryObject;

@Mod.EventBusSubscriber(bus = Mod.EventBusSubscriber.Bus.MOD)
public class AbsentRegistry {
Expand All @@ -53,8 +52,6 @@ public class AbsentRegistry {
// AVOID PILLAR
// AVOID CHISELED?
// AVOID GLAZED TERRACOTTA
//
//1.19 NEW ADD THIS
//
//
//
Expand Down

0 comments on commit 99711e2

Please sign in to comment.