Skip to content

Commit

Permalink
Update for 1.20.5-rc1.
Browse files Browse the repository at this point in the history
* Gradle to 8.6 and Loom to 1.6
- Building Terraform API now requires Java 21
- Add data version for 1.20.5 to the biome remapper
  • Loading branch information
gniftygnome committed Apr 18, 2024
1 parent 67395f1 commit 00995f9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'maven-publish'
id 'idea'
id 'eclipse'
id 'fabric-loom' version '1.5.+'
id 'fabric-loom' version '1.6.+'
}

allprojects {
Expand All @@ -13,8 +13,8 @@ allprojects {
apply plugin: 'maven-publish'
apply plugin: 'fabric-loom'

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

group = project.maven_group

Expand Down Expand Up @@ -63,8 +63,8 @@ allprojects {
java {
withSourcesJar()

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

tasks.withType(ProcessResources).configureEach {
Expand All @@ -77,7 +77,7 @@ allprojects {

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

Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ org.gradle.parallel=true
fabric.loom.multiProjectOptimisation=true

maven_group=com.terraformersmc.terraform-api
version=10.0.0-alpha.9
version=10.0.0-beta.1

minecraft_version=24w13a
yarn_mappings=24w13a+build.2
loader_version=0.15.7
fabric_version=0.96.13+1.20.5
minecraft_version=1.20.5-rc1
yarn_mappings=1.20.5-rc1+build.2
loader_version=0.15.9
fabric_version=0.97.3+1.20.5
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-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ public final class DataVersions {
private DataVersions() {
return;
}
public static final int V_1_20_5 = 3828;
public static final int V_1_20_4 = 3699;
public static final int V_1_20_3 = 3692;
public static final int V_1_20_2 = 3572;
Expand Down

0 comments on commit 00995f9

Please sign in to comment.