Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# User-specific stuff
.idea/
.vscode/

*.iml
*.ipr
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ subprojects {

jar {
from "LICENSE"
inputs.property "archivesName", project.base.archivesName
}

java {
Expand All @@ -21,7 +22,6 @@ subprojects {
if (JavaVersion.current() < javaVersion) {
toolchain.languageVersion = JavaLanguageVersion.of(targetJavaVersion)
}
archivesBaseName = project.archives_base_name

withSourcesJar()
}
Expand Down
3 changes: 1 addition & 2 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '1.9.2'
id 'fabric-loom' version '1.15-SNAPSHOT'
}

group 'me.lunaluna.elytra-recast'
Expand All @@ -22,7 +22,6 @@ dependencies {
modApi("me.shedaniel.cloth:cloth-config-fabric:$cloth_config_version") {
exclude(group: "net.fabricmc.fabric-api")
}

// Gson
implementation "com.google.code.gson:gson:$gson_version"
}
Expand Down
10 changes: 5 additions & 5 deletions fabric/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Fabric
minecraft_version=1.21.4
yarn_mappings=1.21.4+build.8
loader_version=0.16.10
minecraft_version=1.21.8
yarn_mappings=1.21.8+build.1
loader_version=0.17.2
# Dependencies
mod_menu_version=13.0.2
cloth_config_version=17.0.144
mod_menu_version=15.0.0
cloth_config_version=19.0.147
# Libraries
gson_version=2.9.0
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip
distributionUrl=https://mirrors.aliyun.com/github/releases/gradle/gradle-distributions/v9.2.1/gradle-9.2.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down