-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
36 lines (28 loc) · 825 Bytes
/
build.gradle
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
import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
plugins {
id 'java'
id 'application'
}
group 'me.manosgou'
version '1.0-SNAPSHOT'
mainClassName = project.properties['main'] ?: 'Main'
sourceCompatibility = '1.8'
targetCompatibility = '17'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
implementation 'uk.co.electronstudio.jaylib:jaylib:4.2.+'
implementation 'org.apache.commons:commons-lang3:3.0'
implementation "io.github.spair:imgui-java-app:1.86.4"
}
application {
if(DefaultNativePlatform.currentOperatingSystem.isMacOsX()) {
applicationDefaultJvmArgs = ['-XstartOnFirstThread']
}
}
test {
useJUnitPlatform()
}