Skip to content

Commit 130c030

Browse files
version bump
1 parent 47a2ff3 commit 130c030

7 files changed

Lines changed: 27 additions & 20 deletions

File tree

build.gradle

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'fabric-loom' version '1.6-SNAPSHOT'
2+
id 'fabric-loom' version '1.10-SNAPSHOT'
33
id 'maven-publish'
44
}
55

@@ -19,7 +19,7 @@ repositories {
1919
}
2020

2121
loom {
22-
splitEnvironmentSourceSets()
22+
splitEnvironmentSourceSets()
2323

2424
mods {
2525
"modid" {
@@ -45,7 +45,7 @@ processResources {
4545
inputs.property "version", project.version
4646

4747
filesMatching("fabric.mod.json") {
48-
expand "version": project.version
48+
expand "version": inputs.properties.version
4949
}
5050
}
5151

@@ -64,8 +64,10 @@ java {
6464
}
6565

6666
jar {
67+
inputs.property "archivesName", project.base.archivesName
68+
6769
from("LICENSE") {
68-
rename { "${it}_${project.base.archivesName.get()}"}
70+
rename { "${it}_${inputs.properties.archivesName}"}
6971
}
7072
}
7173

gradle.properties

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ org.gradle.parallel=true
44

55
# Fabric Properties
66
# check these on https://fabricmc.net/develop
7-
minecraft_version=1.21
8-
yarn_mappings=1.21+build.2
9-
loader_version=0.15.11
7+
minecraft_version=1.21.5
8+
yarn_mappings=1.21.5+build.1
9+
loader_version=0.16.14
10+
loom_version=1.10-SNAPSHOT
1011

1112

1213
# Mod Properties
@@ -15,4 +16,4 @@ maven_group = me.jonasjones
1516
archives_base_name = consolemc-fabric-quilt
1617

1718
# Dependencies
18-
fabric_version=0.100.3+1.21
19+
fabric_version=0.126.0+1.21.5

gradle/wrapper/gradle-wrapper.jar

130 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

settings.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
pluginManagement {
2-
repositories {
3-
maven {
4-
name = 'Fabric'
5-
url = 'https://maven.fabricmc.net/'
6-
}
7-
mavenCentral()
8-
gradlePluginPortal()
9-
}
10-
}
2+
repositories {
3+
maven {
4+
name = 'Fabric'
5+
url = 'https://maven.fabricmc.net/'
6+
}
7+
mavenCentral()
8+
gradlePluginPortal()
9+
}
10+
}

0 commit comments

Comments
 (0)