From 4810a0862792f509c885d91c3463451058953c91 Mon Sep 17 00:00:00 2001 From: Julienraptor01 Date: Wed, 11 Jan 2023 18:20:38 +0100 Subject: Update dependancies --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index 8b7a6e6d..e4b4f66a 100644 --- a/build.gradle +++ b/build.gradle @@ -36,9 +36,9 @@ repositories { } dependencies { - implementation 'com.google.code.gson:gson:2.10' - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2' - testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2' + implementation 'com.google.code.gson:gson:2.10.1' + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.2' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.2' // To change the versions see the gradle.properties file minecraft "com.mojang:minecraft:${project.minecraft_version}" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" @@ -58,7 +58,7 @@ dependencies { modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" // https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit used pull data from the NEU item repo - include(implementation("org.eclipse.jgit:org.eclipse.jgit:6.0.0.202111291000-r")) + include(implementation("org.eclipse.jgit:org.eclipse.jgit:6.4.0.202211300538-r")) include(modImplementation ("meteordevelopment:discord-ipc:1.1")) } -- cgit From e79b25bdb4ae369cc064ab692b5a67b046d2e18a Mon Sep 17 00:00:00 2001 From: Aaron <51387595+AzureAaron@users.noreply.github.com> Date: Thu, 16 Mar 2023 20:08:05 -0400 Subject: Update Loom & MC Version Requirement --- build.gradle | 2 +- src/main/resources/fabric.mod.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index e4b4f66a..3e80b24a 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '1.0-SNAPSHOT' + id 'fabric-loom' version '1.1-SNAPSHOT' id 'maven-publish' id 'com.modrinth.minotaur' version '2.+' } diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 6e9858b1..ca8a7128 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -29,7 +29,7 @@ "fabricloader": ">=0.14.6", "fabric": "*", "cloth-config2": "*", - "minecraft": [">=1.19.1"] + "minecraft": [">=1.19.2"] }, "custom": { "modmenu": { -- cgit