Skip to content

Commit

Permalink
Rebase fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ALongStringOfNumbers committed Dec 13, 2023
1 parent 4647e35 commit e03d0be
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 21 deletions.
7 changes: 5 additions & 2 deletions addon.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@

minecraft {
// Include the dep string version for addons to use
injectedTags.put('DEP_VERSION_STRING', "required-after:gregtech@[${modVersion},);")
}

configurations {
compileClassPath {
implementation {
// exclude GNU trove, FastUtil is superior and still updated
exclude group: "net.sf.trove4j", module: "trove4j"
// exclude javax.annotation from findbugs, jetbrains annotations are superior
exclude group: "com.google.code.findbugs", module: "jsr305"
// exclude scala as we don't use it for anything and causes import confusion
exclude group: "org.scala-lang"
exclude group: "org.scala-lang.modules"
exclude group: "org.scala-lang.plugins"
}
}

Expand Down
17 changes: 0 additions & 17 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,20 +58,3 @@ dependencies {
// runtimeOnly rfg.deobf("curse.maven:gendustry-70492:2516215") // Gendustry 1.6.5.8
// runtimeOnly rfg.deobf("curse.maven:bdlib-70496:2518031") // BdLib 1.14.3.12
}

minecraft {
injectedTags.put('DEP_VERSION_STRING', "required-after:gregtech@[${modVersion},);")
}

configurations {
implementation {
// exclude GNU trove, FastUtil is superior and still updated
exclude group: "net.sf.trove4j", module: "trove4j"
// exclude javax.annotation from findbugs, jetbrains annotations are superior
exclude group: "com.google.code.findbugs", module: "jsr305"
// exclude scala as we don't use it for anything and causes import confusion
exclude group: "org.scala-lang"
exclude group: "org.scala-lang.modules"
exclude group: "org.scala-lang.plugins"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@
import net.minecraft.tileentity.TileEntity;

import com.llamalad7.mixinextras.injector.ModifyExpressionValue;
import org.jetbrains.annotations.Nullable;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;

import javax.annotation.Nullable;

// TODO, error in log
@Mixin(RenderChunk.class)
public class RenderChunkMixin {
Expand Down

0 comments on commit e03d0be

Please sign in to comment.