-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathbuild.gradle
46 lines (37 loc) · 957 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
plugins {
id 'java'
id 'jacoco'
alias(libs.plugins.kotlin.jvm)
}
repositories {
mavenCentral()
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
dependencies {
// PLEASE ADD AND UPDATE DEPENDENCIES USING libs.versions.toml
api project(':kt-osrd-utils')
implementation libs.kotlin.stdlib
//moshi
implementation libs.moshi
implementation libs.moshi.adapters
implementation libs.moshi.kotlin
//class-graph
implementation libs.classgraph
// for linter annotations
compileOnly libs.jcip.annotations
compileOnly libs.spotbugs.annotations
// Use JUnit Jupiter API for testing.
testImplementation libs.junit.jupiter.api
testImplementation libs.junit.jupiter.params
// Use JUnit Jupiter Engine for testing.
testRuntimeOnly libs.junit.jupiter.engine
}
test {
useJUnitPlatform {
includeEngines 'jqwik', 'junit-jupiter'
}
}