-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathbuild.gradle
47 lines (38 loc) · 992 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
37
38
39
40
41
42
43
44
45
46
import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
group 'org.example'
version '1.0-SNAPSHOT'
mainClassName = project.properties['main'] ?: 'Main'
repositories {
mavenCentral()
// maven {
// url "https://s01.oss.sonatype.org/content/repositories/staging/"
// metadataSources { artifact() }
// }
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
implementation 'uk.co.electronstudio.jaylib:jaylib:5.5.+'
}
application {
if(DefaultNativePlatform.currentOperatingSystem.isMacOsX()) {
applicationDefaultJvmArgs = ['-XstartOnFirstThread']
}
}
test {
useJUnitPlatform()
}
distributions {
main {
contents {
into('resources'){
from 'resources'
}
}
}
}