forked from JabRef/jabref
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
34 lines (26 loc) · 851 Bytes
/
build.gradle.kts
File metadata and controls
34 lines (26 loc) · 851 Bytes
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
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
plugins {
id("org.jabref.gradle.module")
id("java-library")
}
dependencies {
api(project(":jablib"))
implementation("org.slf4j:slf4j-api")
// LSP4J for LSP Server
implementation("org.eclipse.lsp4j:org.eclipse.lsp4j")
implementation("org.eclipse.lsp4j:org.eclipse.lsp4j.websocket")
implementation("com.google.guava:guava")
// route all requests to java.util.logging to SLF4J (which in turn routes to tinylog)
testImplementation("org.slf4j:jul-to-slf4j")
}
javaModuleTesting.whitebox(testing.suites["test"]) {
requires.add("org.junit.jupiter.api")
}
tasks.test {
testLogging {
// set options for log level LIFECYCLE
events("FAILED")
exceptionFormat = TestExceptionFormat.FULL
}
maxParallelForks = 1
}