-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
61 lines (46 loc) · 1.45 KB
/
build.gradle
File metadata and controls
61 lines (46 loc) · 1.45 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
plugins {
id 'java'
}
subprojects {
apply plugin: 'java-library'
java {
modularity.inferModulePath = true
toolchain {
languageVersion = JavaLanguageVersion.of(23)
}
}
group = 'org.karina'
version = '0.7'
repositories {
mavenCentral()
}
dependencies {
//nullable annotations
compileOnly 'org.jetbrains:annotations:26.0.2'
//Json
implementation 'com.google.code.gson:gson:2.11.0'
//Antlr grammar
implementation group: 'org.antlr', name: 'antlr4-runtime', version: '4.13.2'
//lombok annotations
compileOnly 'org.projectlombok:lombok:1.18.38'
annotationProcessor 'org.projectlombok:lombok:1.18.38'
//guava
implementation "com.google.guava:guava:33.4.0-jre"
//asm
implementation 'org.ow2.asm:asm:9.7'
implementation 'org.ow2.asm:asm-commons:9.7'
implementation 'org.ow2.asm:asm-util:9.7'
implementation 'org.ow2.asm:asm-tree:9.7'
//string escaping
implementation 'org.apache.commons:commons-text:1.13.0'
//tests
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.11.4'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.11.4'
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}
}