-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(gradle): update dependencies and build scripts to minecraft 1.20.1
- Loading branch information
1 parent
f4fc34e
commit cbb2edd
Showing
15 changed files
with
263 additions
and
222 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip | ||
networkTimeout=10000 | ||
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
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,4 +1,4 @@ | ||
{ | ||
"major": "2", | ||
"semantic": "3.1.0" | ||
"semantic": "2.1.0" | ||
} |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,52 +1,66 @@ | ||
modLoader = "javafml" | ||
loaderVersion = "[43,)" #This is typically bumped every Minecraft version by Forge | ||
license = "MIT & CC-BY-NC-4.0" | ||
issueTrackerURL = "https://github.com/Elenterius/Biomancy/issues" #optional | ||
loaderVersion = "${loader_version_range}" | ||
license = "${mod_license}" | ||
issueTrackerURL = "https://github.com/Elenterius/Biomancy/issues" | ||
showAsResourcePack = false | ||
|
||
[[mods]] | ||
modId = "biomancy" | ||
version = "${file.jarVersion}" | ||
displayName = "Biomancy 2" | ||
modId = "${mod_id}" | ||
version = "${mod_version}" | ||
displayName = "${mod_name}" | ||
updateJSONURL = "https://api.modrinth.com/updates/uAAuyU4M/forge_updates.json" | ||
displayURL = "https://modrinth.com/mod/biomancy" #optional | ||
logoFile = "text_logo_small.png" #optional | ||
displayURL = "https://modrinth.com/mod/biomancy" | ||
logoFile = "text_logo_small.png" | ||
logoBlur = false | ||
credits = "\u00A77RhinoW, The Shroome, Shorepion, Kitteh6660, ZeoMaddox, ItsLumine, RuskieThe3rd, M4rc3ll0" | ||
authors = "\u00A72Elenterius\u00A7r, \u00A76RhinoW\u00A7r" | ||
description = '''§7Biopunk and Flesh Magic inspired tech-magic mod that has a fleshy art theme.''' | ||
credits = "${mod_credits}" | ||
authors = "${mod_authors}" | ||
description = '''${mod_description}''' | ||
|
||
[[dependencies.biomancy]] | ||
modId = "geckolib3" | ||
# Display Test controls the display for your mod in the server connection screen | ||
# MATCH_VERSION means that your mod will cause a red X if the versions on client and server differ. This is the default behaviour and should be what you choose if you have server and client elements to your mod. | ||
# IGNORE_SERVER_VERSION means that your mod will not cause a red X if it's present on the server but not on the client. This is what you should use if you're a server only mod. | ||
# IGNORE_ALL_VERSION means that your mod will not cause a red X if it's present on the client or the server. This is a special case and should only be used if your mod has no server component. | ||
# NONE means that no display test is set on your mod. You need to do this yourself, see IExtensionPoint.DisplayTest for more information. You can define any scheme you wish with this value. | ||
# IMPORTANT NOTE: this is NOT an instruction as to which environments (CLIENT or DEDICATED SERVER) your mod loads on. Your mod should load (and maybe do nothing!) whereever it finds itself. | ||
#displayTest="MATCH_VERSION" # MATCH_VERSION is the default if nothing is specified (#optional) | ||
|
||
[[dependencies.${ mod_id }]] | ||
modId = "forge" | ||
mandatory = true | ||
versionRange = "${forge_version_range}" | ||
ordering = "NONE" | ||
side = "BOTH" # BOTH, CLIENT or SERVER | ||
|
||
[[dependencies.${ mod_id }]] | ||
modId = "minecraft" | ||
mandatory = true | ||
versionRange = "${minecraft_version_range}" | ||
ordering = "NONE" | ||
side = "BOTH" | ||
|
||
[[dependencies.${ mod_id }]] | ||
modId = "geckolib" | ||
mandatory = true | ||
versionRange = "[3.1.39,4.0)" | ||
versionRange = "${geckolib_version_range}" | ||
ordering = "BEFORE" | ||
side = "BOTH" | ||
|
||
[[dependencies.biomancy]] | ||
[[dependencies.${ mod_id }]] | ||
modId = "jei" | ||
mandatory = false | ||
versionRange = "[11.5.0,)" | ||
versionRange = "${jei_version_range}" | ||
ordering = "BEFORE" | ||
side = "BOTH" | ||
|
||
[[dependencies.biomancy]] | ||
[[dependencies.${ mod_id }]] | ||
modId = "create" | ||
mandatory = false | ||
versionRange = "[0.5.0,)" | ||
versionRange = "${create_version_range}" | ||
ordering = "NONE" | ||
side = "BOTH" | ||
|
||
[[dependencies.biomancy]] | ||
modId = "forge" | ||
mandatory = true | ||
versionRange = "[43.2.0,)" | ||
ordering = "NONE" | ||
side = "BOTH" # BOTH, CLIENT or SERVER | ||
|
||
[[dependencies.biomancy]] | ||
modId = "minecraft" | ||
mandatory = true | ||
versionRange = "[1.19.2,1.19.3)" | ||
ordering = "NONE" | ||
side = "BOTH" | ||
# Features are specific properties of the game environment, that you may want to declare you require. This example declares | ||
# that your mod requires GL version 3.2 or higher. Other features will be added. They are side aware so declaring this won't | ||
# stop your mod loading on the server for example. | ||
#[features.${mod_id}] | ||
#openGLVersion="[3.2,)" |
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,6 +1,8 @@ | ||
{ | ||
"pack": { | ||
"description": "biomancy resources", | ||
"pack_format": 9 | ||
} | ||
} | ||
"pack": { | ||
"description": { | ||
"text": "${mod_id} resources" | ||
}, | ||
"pack_format": 15 | ||
} | ||
} |