-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
8f256f6
commit 70efbd9
Showing
3 changed files
with
80 additions
and
48 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,20 +1,28 @@ | ||
mod_id=integratedtunnels-compat | ||
# Project | ||
mod_version=1.0.0 | ||
group=org.cyclops.integratedtunnelscompat | ||
java_version=21 | ||
|
||
# Common | ||
minecraft_version=1.21.1 | ||
neoforge_version=21.1.2 | ||
mod_name=IntegratedTunnels-Compat | ||
mod_author=rubensworks (aka kroeser) | ||
mod_id=integratedtunnelscompat | ||
license=MIT | ||
github_url=https://github.com/CyclopsMC/IntegratedTunnels-Compat | ||
issue_tracker_url=https://github.com/CyclopsMC/IntegratedTunnels-Compat/issues | ||
display_url=https://www.curseforge.com/minecraft/mc-mods/integrated-tunnels | ||
description=Integrated Tunnels compatibility with other mods. | ||
|
||
parchment_version=2024.07.07 | ||
parchment_minecraft_version=1.21 | ||
|
||
# NeoForge | ||
neoforge_version=21.1.2 | ||
neoforge_loader_version_range=[4,) | ||
|
||
# Dependencies | ||
cyclopscore_version=1.25.1-627 | ||
integrateddynamics_version=1.23.2-832 | ||
integratedtunnels_version=1.8.27-310 | ||
release_type=release | ||
|
||
commoncapabilities_version=2.9.3-147 | ||
|
||
# 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,38 +1,36 @@ | ||
modLoader="javafml" | ||
loaderVersion="[2,)" | ||
issueTrackerURL="https://github.com/CyclopsMC/IntegratedTunnels-Compat/issues" | ||
displayURL="https://www.curseforge.com/minecraft/mc-mods/integrated-tunnels" | ||
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="integratedtunnelscompat" | ||
version="${file.jarVersion}" | ||
displayName="IntegratedTunnels-Compat" | ||
description=''' | ||
Integrated Tunnels compatibility with other mods. | ||
''' | ||
[[dependencies.integratedtunnelscompat]] | ||
modId="${mod_id}" | ||
version="${mod_version}" | ||
displayName="${mod_name}" | ||
description="${description}" | ||
[[dependencies.${mod_id}]] | ||
modId="cyclopscore" | ||
type="required" | ||
versionRange="[1.25.1,)" | ||
versionRange="[${cyclopscore_version_semver},)" | ||
ordering="NONE" | ||
side="BOTH" | ||
[[dependencies.integratedtunnelscompat]] | ||
[[dependencies.${mod_id}]] | ||
modId="integratedtunnels" | ||
type="required" | ||
versionRange="[1.8.11,)" | ||
versionRange="[${integratedtunnels_version_semver},)" | ||
ordering="NONE" | ||
side="BOTH" | ||
[[dependencies.integratedtunnelscompat]] | ||
[[dependencies.${mod_id}]] | ||
modId="neoforge" | ||
type="required" | ||
versionRange="[21.1.2,)" | ||
versionRange="[${neoforge_version},)" | ||
ordering="NONE" | ||
side="BOTH" | ||
[[dependencies.integratedtunnelscompat]] | ||
[[dependencies.${mod_id}]] | ||
modId="minecraft" | ||
type="required" | ||
versionRange="[1.21.1,]" | ||
versionRange="[${minecraft_version},]" | ||
ordering="NONE" | ||
side="BOTH" |