Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
84dc407026 |
+3
-3
@@ -1,5 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'fabric-loom' version '1.8-SNAPSHOT'
|
id 'fabric-loom' version '1.10-SNAPSHOT'
|
||||||
id 'maven-publish'
|
id 'maven-publish'
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -22,8 +22,8 @@ repositories {
|
|||||||
// for more information about repositories.
|
// for more information about repositories.
|
||||||
|
|
||||||
maven {
|
maven {
|
||||||
name "reposiliteRepositoryReleases"
|
name = "gitea"
|
||||||
url "https://maven.bigduckie.dev/releases"
|
url = uri("https://git.bigduckie.dev/api/packages/big-duckie/maven")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+5
-5
@@ -4,9 +4,9 @@ org.gradle.parallel=true
|
|||||||
|
|
||||||
# Fabric Properties
|
# Fabric Properties
|
||||||
# check these on https://fabricmc.net/develop
|
# check these on https://fabricmc.net/develop
|
||||||
minecraft_version=1.20.1
|
minecraft_version=1.21.1
|
||||||
yarn_mappings=1.20.1+build.10
|
yarn_mappings=1.21.1+build.3
|
||||||
loader_version=0.16.7
|
loader_version=0.16.11
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version=dev
|
mod_version=dev
|
||||||
@@ -14,6 +14,6 @@ maven_group=dev.bigduckie
|
|||||||
archives_base_name=static-content
|
archives_base_name=static-content
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
fabric_version=0.92.2+1.20.1
|
fabric_version=0.119.6+1.21.5
|
||||||
|
|
||||||
static_data_version=1.1.0+1.20.1
|
static_data_version=1.1.0+1.21.1
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
|
||||||
networkTimeout=10000
|
networkTimeout=10000
|
||||||
validateDistributionUrl=true
|
validateDistributionUrl=true
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ public class IdentifierDeserializer implements JsonDeserializer<Identifier>, Jso
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Identifier deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
|
public Identifier deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
|
||||||
return new Identifier(json.getAsJsonPrimitive().getAsString().toLowerCase());
|
return Identifier.of(json.getAsJsonPrimitive().getAsString().toLowerCase());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user