Skip to content

Commit

Permalink
Merge pull request #50 from Mechazawa/minecraft_1.20.5
Browse files Browse the repository at this point in the history
Update plugin to Minecraft 1.20.5
  • Loading branch information
MichaelHillcox authored May 8, 2024
2 parents 2b7dc92 + 02e7c4a commit 4b9915a
Show file tree
Hide file tree
Showing 6 changed files with 192 additions and 122 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
!contains(github.event.head_commit.message, '[ciskip]')
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17 & Cache
- name: Set up JDK 21 & Cache
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
java-version: '21'
cache: 'gradle'
- name: Release
if: |
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
plugins {
id 'fabric-loom' version '1.4-SNAPSHOT'
id 'fabric-loom' version '1.6-SNAPSHOT'
id 'maven-publish'
id 'pro.mikey.plugins.insaniam' version "0.1-SNAPSHOT"
id "me.modmuss50.mod-publish-plugin" version "0.4.5"
}

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

def ENV = System.getenv()

Expand Down Expand Up @@ -37,7 +37,7 @@ processResources {

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

java {
Expand Down
11 changes: 6 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx2G
org.gradle.parallel=true
# Fabric Properties
# check these on https://fabricmc.net/use
minecraft_version=1.20.4
yarn_mappings=1.20.4+build.1
minecraft_version=1.20.5
yarn_mappings=1.20.5+build.1
loader_version=0.15.10
# Mod Properties
mod_version=84.0.1
mod_version=85.0.0
maven_group=pro.mikey.mods
archives_base_name=auto-clicker-fabric
# Dependencies
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
loader_version=0.15.1
fabric_version=0.91.1+1.20.4
fabric_version=0.97.8+1.20.5
curseforge_id=445095
modrinth_id=r8axuw4u
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.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 4b9915a

Please sign in to comment.