-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (33 loc) · 921 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
plugins {
id 'java'
id 'maven-publish'
id 'com.palantir.git-version' version '0.15.0'
}
group 'com.github.basdxz.vbuffers'
version gitVersion()
def projectJavaVersion = JavaLanguageVersion.of(17)
java {
toolchain {
languageVersion.set(projectJavaVersion)
}
}
repositories {
mavenCentral()
}
dependencies {
// Lombok
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
testCompileOnly 'org.projectlombok:lombok:1.18.24'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.24'
// JetBrains Static Analysis
implementation 'org.jetbrains:annotations:23.0.0'
// Supported Types
implementation 'org.joml:joml:1.10.5'
// JUnit
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
}
test {
useJUnitPlatform()
}