aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorKevin <92656833+kevinthegreat1@users.noreply.github.com>2023-05-18 14:17:22 -0700
committerGitHub <noreply@github.com>2023-05-18 14:17:22 -0700
commitf0f41378eef1c7bf59827ed707db048db5ff7050 (patch)
treefc1b9754c30152e2058f09dc895a2c9d706c5009 /build.gradle
parent8af420fe167925cab6fafa50db0c1c4947f21057 (diff)
parent33b467fa42d4bc6bb841512ae839b678297d920a (diff)
downloadSkyblocker-f0f41378eef1c7bf59827ed707db048db5ff7050.tar.gz
Skyblocker-f0f41378eef1c7bf59827ed707db048db5ff7050.tar.bz2
Skyblocker-f0f41378eef1c7bf59827ed707db048db5ff7050.zip
Merge pull request #148 from lantice3720/master
REI Compatibility
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index dc1b09be..5ee08867 100644
--- a/build.gradle
+++ b/build.gradle
@@ -50,6 +50,10 @@ dependencies {
// Mod Menu
modImplementation "com.terraformersmc:modmenu:${project.mod_menu_version}"
+ // REI
+ modCompileOnly "me.shedaniel:RoughlyEnoughItems-api-fabric:${project.rei_version}"
+ modRuntimeOnly "me.shedaniel:RoughlyEnoughItems-fabric:${project.rei_version}"
+
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_api_version}"
@@ -113,7 +117,8 @@ modrinth {
versionType = "release"
dependencies = [ // Yet another array. Create a new `ModDependency` or `VersionDependency` with two strings - the ID and the scope
new ModDependency("P7dR8mSH", "required"), // Creates a new required dependency on Fabric API
- new ModDependency("mOgUt4GM", "optional") // modmenu
+ new ModDependency("mOgUt4GM", "optional"), // modmenu
+ new ModDependency("nfn13YXA", "optional") // REI
]
changelog = System.getenv('CHANGELOG')
}