-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modernize CI and gradle.properties usage
- Loading branch information
1 parent
eb96b47
commit da26ede
Showing
4 changed files
with
134 additions
and
82 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
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,18 +1,30 @@ | ||
mod_id=evilcraft | ||
# Project | ||
mod_version=1.2.59 | ||
group=org.cyclops.evilcraft | ||
java_version=21 | ||
|
||
# Common | ||
minecraft_version=1.21.1 | ||
neoforge_version=21.1.2 | ||
mod_name=EvilCraft | ||
mod_author=rubensworks (aka kroeser) | ||
mod_id=evilcraft | ||
license=MIT | ||
github_url=https://github.com/CyclopsMC/EvilCraft | ||
issue_tracker_url=https://github.com/CyclopsMC/EvilCraft/issues | ||
display_url=https://www.curseforge.com/minecraft/mc-mods/evilcraft | ||
description=An evil mod for Minecraft. | ||
fingerprint=bd0353b3e8a2810d60dd584e256e364bc3bedd44 | ||
|
||
parchment_version=2024.07.07 | ||
parchment_minecraft_version=1.21 | ||
curseforge_project_id=74610 | ||
modrinth_project_id=3ANq2btA | ||
|
||
# NeoForge | ||
neoforge_version=21.1.2 | ||
neoforge_loader_version_range=[4,) | ||
neoforge_update_json_url=https://raw.githubusercontent.com/CyclopsMC/Versions/master/neoforge_update/evilcraft.json | ||
|
||
# Dependencies | ||
cyclopscore_version=1.25.1-627 | ||
evilcraftcompat_version=1.1.0-70 | ||
release_type=release | ||
fingerprint=bd0353b3e8a2810d60dd584e256e364bc3bedd44 | ||
|
||
# Workaround for Spotless bug | ||
# https://github.com/diffplug/spotless/issues/834 | ||
org.gradle.jvmargs=--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \ | ||
--add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \ | ||
--add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED \ | ||
--add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \ | ||
--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED |
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,35 +1,33 @@ | ||
modLoader="javafml" | ||
loaderVersion="[2,)" | ||
issueTrackerURL="https://github.com/CyclopsMC/EvilCraft/issues" | ||
displayURL="https://www.curseforge.com/minecraft/mc-mods/evilcraft" | ||
license="MIT" | ||
loaderVersion="${neoforge_loader_version_range}" | ||
issueTrackerURL="${issue_tracker_url}" | ||
displayURL="${display_url}" | ||
license="${license}" | ||
logoFile="logo.png" | ||
authors="rubensworks (aka kroeser)" | ||
authors="${mod_author}" | ||
[[mods]] | ||
modId="evilcraft" | ||
version="${file.jarVersion}" | ||
displayName="EvilCraft" | ||
updateJSONURL="https://raw.githubusercontent.com/CyclopsMC/Versions/master/neoforge_update/evilcraft.json" | ||
description=''' | ||
An evil mod for Minecraft. | ||
''' | ||
modId="${mod_id}" | ||
version="${mod_version}" | ||
displayName="${mod_name}" | ||
updateJSONURL="${neoforge_update_json_url}" | ||
description="${description}" | ||
[[accessTransformers]] | ||
file="META-INF/accesstransformer.cfg" | ||
[[dependencies.evilcraft]] | ||
[[dependencies.${mod_id}]] | ||
modId="cyclopscore" | ||
type="required" | ||
versionRange="[1.25.1,)" | ||
versionRange="[${cyclopscore_version_semver},)" | ||
ordering="NONE" | ||
side="BOTH" | ||
[[dependencies.evilcraft]] | ||
[[dependencies.${mod_id}]] | ||
modId="neoforge" | ||
type="required" | ||
versionRange="[21.1.2,)" | ||
versionRange="[${neoforge_version},)" | ||
ordering="NONE" | ||
side="BOTH" | ||
[[dependencies.evilcraft]] | ||
[[dependencies.${mod_id}]] | ||
modId="minecraft" | ||
type="required" | ||
versionRange="[1.21.1,]" | ||
versionRange="[${minecraft_version},]" | ||
ordering="NONE" | ||
side="BOTH" |