Skip to content

Commit

Permalink
Update to Minecraft 1.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerozgen committed Nov 11, 2023
1 parent f1e8101 commit fe9cb94
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
10 changes: 8 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '1.0.+'
id 'fabric-loom' version '1.4-SNAPSHOT'
id 'maven-publish'
}

Expand Down Expand Up @@ -36,11 +36,17 @@ processResources {

tasks.withType(JavaCompile).configureEach {
it.options.encoding = "UTF-8"
it.options.release = 17
}

base {
archivesName = project.archives_base_name
}

java {
archivesBaseName = project.archives_base_name
withSourcesJar()
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

jar {
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.19.3
yarn_mappings=1.19.3+build.5
loader_version=0.14.12
minecraft_version=1.20.2
yarn_mappings=1.20.2+build.4
loader_version=0.14.24
# Mod Properties
mod_version=1.0
maven_group=jerozgen
archives_base_name=gomoku
# Dependencies
fabric_version=0.70.0+1.19.3
plasmid_version=0.5+1.19.3-SNAPSHOT
fabric_version=0.90.7+1.20.2
plasmid_version=0.5.102-SNAPSHOT+1.20.2
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
6 changes: 3 additions & 3 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
]
},
"depends": {
"fabricloader": ">=0.14.8",
"fabricloader": ">=0.14.24",
"fabric": "*",
"minecraft": ">=1.19",
"plasmid": ">=0.5.0"
"minecraft": ">=1.20.2",
"plasmid": ">=0.5.102-"
}
}

0 comments on commit fe9cb94

Please sign in to comment.