-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mostly taken from Quilt's template mod. - No longer JIJs FAPI - Update gradle wrapper
- Loading branch information
1 parent
6cb7a4a
commit bd52a34
Showing
6 changed files
with
52 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,10 @@ | ||
# Done to increase the memory available to gradle. | ||
org.gradle.jvmargs=-Xmx1G | ||
|
||
# Fabric Properties | ||
# check these on https://fabricmc.net/develop/ | ||
minecraft_version=1.19 | ||
quilt_mappings=1 | ||
loader_version=0.14.6 | ||
fabric_version=0.55.2+1.19 | ||
# Gradle Properties | ||
org.gradle.jvmargs = -Xmx1G | ||
org.gradle.parallel = true | ||
|
||
# Mod Properties | ||
mod_version=1.0.2 | ||
mod_version=1.0.3 | ||
maven_group=me.tibinonest.mods | ||
archives_base_name=cauldron-dyeing | ||
|
||
# Dependencies | ||
sodium_version=mc1.19-0.4.2 | ||
# Dependencies are managed at gradle/libs.versions.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[versions] | ||
minecraft = "1.19" | ||
quilt_mappings = "1.19+build.1" | ||
fabric_loader = "0.14.6" | ||
|
||
fabric_api = "0.55.2+1.19" | ||
sodium = "mc1.19-0.4.2" | ||
|
||
[libraries] | ||
minecraft = { module = "com.mojang:minecraft", version.ref = "minecraft" } | ||
quilt_mappings = { module = "org.quiltmc:quilt-mappings", version.ref = "quilt_mappings" } | ||
fabric_loader = { module = "net.fabricmc:fabric-loader", version.ref = "fabric_loader" } | ||
|
||
fabric_api = { module = "net.fabricmc.fabric-api:fabric-api", version.ref = "fabric_api" } | ||
sodium = { module = "maven.modrinth:sodium", version.ref = "sodium" } | ||
|
||
[plugins] | ||
fabric_loom = { id = "fabric-loom", version = "0.12.+" } | ||
loom_quiltflower = { id = "io.github.juuxel.loom-quiltflower", version = "1.7.+" } | ||
qmol = { id = "org.quiltmc.quilt-mappings-on-loom", version = "4.2.0" } | ||
grgit = { id = "org.ajoberstar.grgit", version = "5.0.0" } |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.4.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,13 @@ | ||
pluginManagement { | ||
repositories { | ||
maven { | ||
name 'Quilt' | ||
url 'https://maven.quiltmc.org/repository/release' | ||
name = 'Quilt' | ||
url = 'https://maven.quiltmc.org/repository/release' | ||
} | ||
maven { | ||
name = 'Fabric' | ||
url = 'https://maven.fabricmc.net/' | ||
} | ||
maven { | ||
name = 'Cotton' | ||
url = 'https://server.bbkr.space/artifactory/libs-release/' | ||
} | ||
gradlePluginPortal() | ||
} | ||
} |