Skip to content

Commit 0cfbf65

Browse files
committed
Add dummy dependency target for mods
1 parent c290471 commit 0cfbf65

File tree

3 files changed

+52
-1
lines changed

3 files changed

+52
-1
lines changed

ffapi.gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
loom.platform=neoforge
22
fabric.loom.dontRemap=true
33

4-
implementationVersion=2.1.3
4+
implementationVersion=2.1.4
55

66
versionMc=1.21.1
77
versionForge=21.1.169
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
modLoader = "lowcodefml"
2+
loaderVersion = "[1,)"
3+
license = "Apache-2.0"
4+
issueTrackerURL = "https://github.com/Sinytra/ForgifiedFabricAPI/issues"
5+
6+
[[mods]]
7+
modId = "fabric_api"
8+
version = "${file.jarVersion}"
9+
displayName = "Forgified Fabric API"
10+
logoFile = "assets/fabric/icon.png"
11+
authors = "Sinytra, FabricMC"
12+
description = "Core API module providing key hooks and intercompatibility features."
13+
provides = ["fabric", "fabric-api"]
14+
displayURL = "https://github.com/Sinytra/ForgifiedFabricAPI"
15+
16+
[[dependencies.fabric_api]]
17+
modId = "neoforge"
18+
type = "required"
19+
versionRange = "[21.1.169,)"
20+
ordering = "NONE"
21+
side = "BOTH"
22+
23+
[[dependencies.fabric_api]]
24+
modId = "minecraft"
25+
type = "required"
26+
versionRange = "[1.21.1,1.22)"
27+
ordering = "NONE"
28+
side = "BOTH"
29+
30+
[[mods]]
31+
modId = "forgified_fabric_api"
32+
version = "${file.jarVersion}"
33+
displayName = "Forgified Fabric API (dummy)"
34+
logoFile = "assets/fabric/icon.png"
35+
authors = "Sinytra, FabricMC"
36+
description = "Dependency target for other mods"
37+
displayURL = "https://github.com/Sinytra/ForgifiedFabricAPI"
38+
39+
[[dependencies.forgified_fabric_api]]
40+
modId = "neoforge"
41+
type = "required"
42+
versionRange = "[21.1.169,)"
43+
ordering = "NONE"
44+
side = "BOTH"
45+
46+
[[dependencies.forgified_fabric_api]]
47+
modId = "minecraft"
48+
type = "required"
49+
versionRange = "[1.21.1,1.22)"
50+
ordering = "NONE"
51+
side = "BOTH"

0 commit comments

Comments
 (0)