-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
41 lines (34 loc) · 1.4 KB
/
build.gradle.kts
File metadata and controls
41 lines (34 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
plugins {
id("java")
id("fabric-loom") version "1.16.1"
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral()
maven("https://repo.panda-lang.org/releases/")
maven("https://maven.fabricmc.net/")
maven("https://api.modrinth.com/maven")
maven("https://maven.terraformersmc.com/releases/")
}
dependencies {
val yarnVersion = "1.21.11-pre5+build.1"
val minecraftVersion = yarnVersion.substringBefore('+')
mappings("net.fabricmc:yarn:$yarnVersion")
minecraft("com.mojang:minecraft:$minecraftVersion")
modImplementation("net.fabricmc:fabric-loader:0.19.2")
modImplementation("net.fabricmc.fabric-api:fabric-api:0.147.1+26.2")
modLocalRuntime("maven.modrinth:fabric-permissions-api:0.5.0")
modLocalRuntime("maven.modrinth:luckperms:5.4.36-forge")
modLocalRuntime("com.terraformersmc:modmenu:16.0.0")
// modImplementation("dev.rollczi:litecommands-fabric:3.10.9") <-- uncomment in your project
// modImplementation("dev.rollczi:litecommands-luckperms:3.10.9") <-- uncomment in your project
implementation(project(path = ":litecommands-fabric", configuration = "namedElements")) // <-- REMOVE THIS
implementation(project(":litecommands-luckperms")) // <-- REMOVE THIS
}
sourceSets.test {
java.setSrcDirs(emptyList<String>())
resources.setSrcDirs(emptyList<String>())
}