-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
31 lines (25 loc) · 922 Bytes
/
build.gradle.kts
File metadata and controls
31 lines (25 loc) · 922 Bytes
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
plugins {
id("com.github.johnrengelman.shadow") version "8.1.1"
id("java")
}
group = "me.hydos.flatutils"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
shadow(implementation("com.intellij:forms_rt:7.0.3")!!)
shadow(implementation("com.github.weisj:darklaf-core:3.0.2")!!)
shadow(implementation(platform("org.lwjgl:lwjgl-bom:3.3.2"))!!)
shadow(implementation("org.lwjgl", "lwjgl"))
shadow(implementation("org.lwjgl", "lwjgl-nfd"))
shadow(runtimeOnly("org.lwjgl", "lwjgl", classifier = "natives-windows"))
shadow(runtimeOnly("org.lwjgl", "lwjgl-nfd", classifier = "natives-windows"))
shadow(runtimeOnly("org.lwjgl", "lwjgl", classifier = "natives-windows"))
shadow(runtimeOnly("org.lwjgl", "lwjgl-nfd", classifier = "natives-windows"))
}
tasks.withType<Jar> {
manifest {
attributes["Main-Class"] = "me.hydos.flatutils.Main"
}
}