Skip to content

Commit

Permalink
Initial 1.18.2 port
Browse files Browse the repository at this point in the history
  • Loading branch information
KlemenDEV committed Mar 2, 2022
1 parent 0df336e commit 1f65f47
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .idea/runConfigurations/runClient.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions .idea/runConfigurations/runServer.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ project.tasks.build.dependsOn project.tasks.shadowJar
java.toolchain.languageVersion = JavaLanguageVersion.of(17)

minecraft {
mappings channel: 'official', version: '1.18.1'
mappings channel: 'official', version: '1.18.2'

runs {
client {
Expand Down Expand Up @@ -59,7 +59,7 @@ configurations {
}

dependencies {
minecraft 'net.minecraftforge:forge:1.18.1-39.0.19'
minecraft 'net.minecraftforge:forge:1.18.2-40.0.1'

shadowpack 'com.fazecast:jSerialComm:2.7.0'
}
Expand Down Expand Up @@ -121,7 +121,7 @@ task copyModIntoFinalBuild(type: Copy) {
from('build/libs/')
include ('mcreator_link-' + version + '-all.jar')
into('build/export/')
rename { "MCreator Link " + project.version + " [1.18.1].jar" }
rename { "MCreator Link " + project.version + " [1.18.2].jar" }
}

task copyDevModIntoFinalBuild(type: Copy) {
Expand All @@ -130,7 +130,7 @@ task copyDevModIntoFinalBuild(type: Copy) {
from('build/libs/')
include ('mcreator_link-' + version + '.jar')
into('build/export/')
rename { "MCreator Link " + project.version + " [1.18.1] - Dev.jar" }
rename { "MCreator Link " + project.version + " [1.18.2] - Dev.jar" }
}

task exportArduinoLibrary(type: Zip) {
Expand Down
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.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
modLoader="javafml"
loaderVersion="[39,)"
loaderVersion="[40,)"
license="Apache License Version 2.0"

[[mods]]
Expand All @@ -15,6 +15,6 @@ logoFile="logo.png"
[[dependencies.test]]
modId="minecraft"
mandatory=true
versionRange="[1.18.1]"
versionRange="[1.18.2]"
ordering="NONE"
side="BOTH"

0 comments on commit 1f65f47

Please sign in to comment.