We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8faff8 commit dcaa53cCopy full SHA for dcaa53c
build.gradle.kts
@@ -7,6 +7,8 @@ val mavenGroup = property("maven_group").toString()
7
val minecraftVersion = property("minecraft_version").toString()
8
val yarnMappings = property("yarn_mappings").toString()
9
10
+val libs = file("libs")
11
+
12
plugins {
13
kotlin("jvm") version ("1.9.22")
14
id("org.jetbrains.dokka") version "1.9.20"
@@ -72,7 +74,7 @@ allprojects {
72
74
maven("https://maven.terraformersmc.com/releases/")
73
75
76
flatDir {
- dirs(rootProject.file("libs"))
77
+ dirs(libs)
78
}
79
80
0 commit comments