-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
50 lines (45 loc) · 1.68 KB
/
build.gradle
File metadata and controls
50 lines (45 loc) · 1.68 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
42
43
44
45
46
47
48
49
50
plugins {
id "java"
id "base.base-conventions"
id "base.application-conventions"
}
repositories {
maven {
name = "Lenni0451"
url = "https://maven.lenni0451.net/snapshots"
content {
includeGroupByRegex "net\\.lenni0451(\\..+)?"
includeGroupByRegex "net\\.raphimc(\\..+)?"
}
}
}
dependencies {
includeInJar "net.raphimc:NoteBlockLib:3.2.0"
includeInJar "net.raphimc:audio-mixer:2.3.1-20260203.210117-1"
includeInJar "org.jcraft:jorbis:0.0.17"
includeInJar "javazoom:jlayer:1.0.1"
includeInJar "com.formdev:flatlaf:3.7.1"
includeInJar "net.lenni0451.commons:swing:1.9.2"
includeInJar "net.java.dev.jna:jna:5.18.1"
includeInJar "net.raphimc:thingl:0.1.1-20260130.231704-6:java17"
includeInJar "org.lwjgl:lwjgl:3.4.1"
includeInJar "org.lwjgl:lwjgl-opengl:3.4.1"
includeInJar "org.lwjgl:lwjgl-glfw:3.4.1"
includeInJar "org.lwjgl:lwjgl-stb:3.4.1"
includeInJar "org.lwjgl:lwjgl-freetype:3.4.1"
includeInJar("org.lwjglx:lwjgl3-awt:0.2.4") {
exclude group: "org.lwjgl", module: "lwjgl"
exclude group: "org.lwjgl", module: "lwjgl-opengl"
exclude group: "org.lwjgl", module: "lwjgl-vulkan"
}
["natives-windows", "natives-windows-arm64", "natives-linux", "natives-linux-arm64", "natives-macos", "natives-macos-arm64"].each {
includeInJar "org.lwjgl:lwjgl:3.4.1:$it"
includeInJar "org.lwjgl:lwjgl-opengl:3.4.1:$it"
includeInJar "org.lwjgl:lwjgl-glfw:3.4.1:$it"
includeInJar "org.lwjgl:lwjgl-stb:3.4.1:$it"
includeInJar "org.lwjgl:lwjgl-freetype:3.4.1:$it"
}
}
application {
mainClass = "net.raphimc.noteblocktool.Main"
}