Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
UselessBullets committed May 9, 2024
1 parent bd3ce9f commit ea9a034
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 42 deletions.
38 changes: 1 addition & 37 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,30 +32,6 @@ repositories {
}
metadataSources { artifact() }
}
ivy {
url = "https://github.com/Turnip-Labs"
patternLayout {
artifact "[organisation]/releases/download/v[revision]/[module]-[revision].jar"
m2compatible = true
}
metadataSources { artifact() }
}
ivy {
url = "https://github.com/Turnip-Labs"
patternLayout {
artifact "[organisation]/releases/download/[revision]/[module]-[revision].jar"
m2compatible = true
}
metadataSources { artifact() }
}
ivy {
url = "https://github.com/Turnip-Labs"
patternLayout {
artifact "[organisation]/releases/download/[revision]/[module]-bta-[revision].jar"
m2compatible = true
}
metadataSources { artifact() }
}
ivy {
url = "https://piston-data.mojang.com"
patternLayout {
Expand All @@ -72,14 +48,6 @@ repositories {
}
metadataSources { artifact() }
}
ivy {
url = "https://github.com/UselessSolutions"
patternLayout {
artifact "[organisation]/releases/download/v[revision]/[module]-[revision].jar"
m2compatible = true
}
metadataSources { artifact() }
}
}

dependencies {
Expand All @@ -92,20 +60,16 @@ dependencies {
// Helper library
// If you do not need Halplibe you can comment this line out or delete this line
modImplementation "com.github.Turnip-Labs:bta-halplibe:${project.halplibe_version}"
modImplementation "com.github.Turnip-Labs:ModMenu:${project.modmenu_version}"

modImplementation "ModMenu:ModMenu:2.0.3"

implementation "org.slf4j:slf4j-api:1.8.0-beta4"
implementation "org.apache.logging.log4j:log4j-slf4j18-impl:2.16.0"

implementation 'com.google.guava:guava:30.0-jre'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.10.1'

var log4jVersion = "2.20.0"
implementation("org.apache.logging.log4j:log4j-core:${log4jVersion}")
implementation("org.apache.logging.log4j:log4j-api:${log4jVersion}")
implementation("org.apache.logging.log4j:log4j-1.2-api:${log4jVersion}")
include(implementation("org.apache.commons:commons-lang3:3.12.0"))
}

java {
Expand Down
9 changes: 5 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
org.gradle.jvmargs=-Xmx2G

# BTA
bta_version=7.1-pre1a
bta_version=7.2-pre1

# Loader
loader_version=0.14.19-babric.3-bta
loader_version=0.15.6-babric.6-bta
modmenu_version=2.0.6

# HalpLibe
halplibe_version=3.0.2
halplibe_version=4.0.6

# Mod
mod_version=1.4.4-7.1
mod_version=1.4.4-7.2-pre1
mod_group=useless
mod_name=terrainapi
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
import net.minecraft.core.data.registry.Registries;
import net.minecraft.core.world.biome.Biome;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import useless.terrainapi.config.OreConfig;
import useless.terrainapi.util.Utilities;

import javax.annotation.Nullable;
import java.util.HashMap;

public class OverworldConfig extends OreConfig {
Expand Down

0 comments on commit ea9a034

Please sign in to comment.