Skip to content

Commit

Permalink
chore: gradle file update
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBv committed Dec 26, 2023
1 parent 9999fc4 commit fe4c7c8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ java.toolchain.languageVersion = JavaLanguageVersion.of(17)

println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}"
minecraft {
mappings channel: 'parchment', version: '2023.08.13-1.20.1'
mappings channel: 'parchment', version: "${parchment_version}-${mc_version}"

accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
copyIdeResources = true
Expand Down Expand Up @@ -134,7 +134,7 @@ processResources {
}

dependencies {
minecraft 'net.neoforged:forge:1.20.1-47.1.79'
minecraft "net.neoforged:forge:${mc_version}-${forge_version}"

annotationProcessor "org.spongepowered:mixin:0.8.5:processor"
// at runtime, use the full JEI jar
Expand All @@ -152,7 +152,7 @@ jar {
attributes([
"Specification-Title": "iceandfire",
"Specification-Vendor": "alexthe667",
"Specification-Version": "2.1.11", // We are version 1 of ourselves
"Specification-Version": mod_version, // We are version 1 of ourselves
"Implementation-Title": project.name,
"Implementation-Version": "${version}",
"Implementation-Vendor" :"alexthe667",
Expand Down
5 changes: 5 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

mc_version=1.20.1
forge_version=47.1.79
parchment_version=2023.09.03

mod_version=2.1.13

jei_version=15.2.0.25

0 comments on commit fe4c7c8

Please sign in to comment.