-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (34 loc) · 845 Bytes
/
build.gradle
File metadata and controls
44 lines (34 loc) · 845 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
32
33
34
35
36
37
38
39
40
41
42
43
44
plugins {
id 'java'
}
group = 'org.nrr.nk'
version = '1.0.1'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
withJavadocJar()
withSourcesJar()
}
repositories {
mavenCentral()
}
dependencies {
implementation platform(libs.lwjgl.bom)
implementation (libs.lwjgl.nuklear)
implementation (libs.lwjgl.nuklear.native)
implementation (libs.lwjgl.stb)
implementation (libs.lwjgl.stb.native)
implementation(libs.jme3.core)
implementation(libs.jme3.effects)
implementation(libs.jme3.lwjgl3)
runtimeOnly(libs.jme3.plugins)
testImplementation(libs.jme3.desktop)
testImplementation(libs.jme3.awt.dialogs)
}
tasks.withType(JavaCompile).configureEach {
options.compilerArgs += ['-Xlint:unchecked', '-Xlint:deprecation']
}
test {
useJUnitPlatform()
}