Skip to content

Commit

Permalink
1.20.6
Browse files Browse the repository at this point in the history
  • Loading branch information
maximumpower55 committed May 5, 2024
1 parent 256419e commit fe08a41
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 14 deletions.
9 changes: 4 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
plugins {
id "fabric-loom" version "1.0-SNAPSHOT"
id "fabric-loom" version "1.6.9"
id "maven-publish"
id "io.github.juuxel.loom-vineflower" version "1.+"
id "org.ajoberstar.grgit" version '4.1.0'
}

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21

archivesBaseName = project.archives_base_name
version = "${project.mod_version}-mc${project.minecraft_version}-rev.${grgit.head().abbreviatedId}"
Expand Down Expand Up @@ -49,7 +48,7 @@ dependencies {
include("com.squareup.okio:okio-jvm:3.2.0")
include("com.neovisionaries:nv-websocket-client:2.14")
// for "squareup.x" libs (they all use kotlin) and MarKt
modLocalRuntime("net.fabricmc:fabric-language-kotlin:1.9.1+kotlin.1.8.10")
modLocalRuntime("net.fabricmc:fabric-language-kotlin:1.10.19+kotlin.1.9.23")
}

processResources {
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ org.gradle.jvmargs=-Xmx4G

# Fabric Properties
# check these on https://fabricmc.net/develop
minecraft_version=1.20.4
loader_version=0.15.1
fabric_version=0.92.0+1.20.4
minecraft_version=1.20.6
loader_version=0.15.10
fabric_version=0.97.8+1.20.6

# Mod Properties
mod_version = 1.2.3
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 0 additions & 4 deletions src/main/java/one/devos/nautical/teabridge/PlatformUtil.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package one.devos.nautical.teabridge;

import java.nio.file.Path;
import java.util.List;
import java.util.function.Consumer;

import com.mojang.brigadier.CommandDispatcher;
Expand All @@ -11,12 +10,9 @@
import net.fabricmc.fabric.api.event.lifecycle.v1.ServerLifecycleEvents;
import net.fabricmc.fabric.api.message.v1.ServerMessageEvents;
import net.fabricmc.loader.api.FabricLoader;
import net.minecraft.ChatFormatting;
import net.minecraft.commands.CommandSourceStack;
import net.minecraft.network.chat.Component;
import net.minecraft.network.chat.HoverEvent;
import net.minecraft.network.chat.MutableComponent;
import net.minecraft.network.chat.Style;
import net.minecraft.resources.ResourceLocation;

public class PlatformUtil implements DedicatedServerModInitializer {
Expand Down
1 change: 0 additions & 1 deletion src/main/java/one/devos/nautical/teabridge/TeaBridge.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package one.devos.nautical.teabridge;

import java.net.http.HttpClient;
import java.util.Optional;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down

0 comments on commit fe08a41

Please sign in to comment.