Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Commit

Permalink
Simplify Fapi dependency declarations A LOT
Browse files Browse the repository at this point in the history
  • Loading branch information
Siphalor committed Feb 24, 2022
1 parent f0266e6 commit 65145d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ dependencies {
mappings "net.fabricmc:yarn:${project.minecraft_version}+build.${project.yarn_mappings}"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"

include(modApi("net.fabricmc.fabric-api:fabric-api-base:0.1.2+b7f9825d0c"))
include(modApi("net.fabricmc.fabric-api:fabric-networking-api-v1:1.0.1+c1455e800c"))
modImplementation "net.fabricmc.fabric-api:fabric-registry-sync-v0:0.2.6+f3d8141b0c"
include(modApi(fabricApi.module("fabric-api-base", fabric_api_version)))
include(modApi(fabricApi.module("fabric-networking-api-v1", fabric_api_version)))
modImplementation(fabricApi.module("fabric-registry-sync-v0", fabric_api_version))

modImplementation("me.shedaniel:RoughlyEnoughItems:3.6.21") {
exclude module: "modmenu"
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ org.gradle.jvmargs=-Xmx1G
archives_base_name = nbtcrafting

# Dependencies
fabric_api_version = 0.28.5+1.15

0 comments on commit 65145d6

Please sign in to comment.