blob: 9d2f809042cc5c1ec21757735cb766eb2d0ae8a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
pluginManagement {
repositories {
maven { url "https://maven.shedaniel.me/" }
maven { url "https://maven.fabricmc.net/" }
gradlePluginPortal()
maven { url "https://files.minecraftforge.net/maven/" }
}
}
if (JavaVersion.current().ordinal() + 1 < 21) {
throw new IllegalStateException("Please run gradle with Java 21+!")
}
rootProject.name = "RoughlyEnoughItems"
include "api"
include "default-plugin"
include "runtime"
include "fabric"
//include "forge"
include "neoforge"
|