-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (35 loc) · 1.3 KB
/
build.gradle
File metadata and controls
44 lines (35 loc) · 1.3 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
plugins {
id 'java'
id "com.diffplug.spotless" version "6.10.0"
}
group 'dev.yeff'
project.ext.jomlVersion = "1.10.5"
repositories {
mavenCentral()
maven { url "https://dl.cloudsmith.io/public/electron-studio/jaylib/maven/" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
dependencies {
testImplementation 'org.assertj:assertj-core:3.22.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
testCompileOnly 'org.projectlombok:lombok:1.18.22'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22'
implementation 'uk.co.electronstudio.jaylib:jaylib:4.0.+'
implementation 'uk.co.electronstudio.jaylib:jaylib-natives-windows-x86_64:4.0.+'
implementation 'uk.co.electronstudio.jaylib:jaylib-natives-macosx-x86_64:4.0.+'
implementation 'uk.co.electronstudio.jaylib:jaylib-natives-linux-x86_64:4.0.+'
implementation "org.joml:joml:${jomlVersion}"
implementation 'org.slf4j:slf4j-api:2.0.0-alpha5'
implementation 'org.slf4j:slf4j-simple:2.0.0-alpha5'
}
spotless {
java {
googleJavaFormat()
}
}
test {
useJUnitPlatform()
}