-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
54 lines (42 loc) · 1.34 KB
/
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
47
48
49
50
51
52
plugins {
id 'java'
id 'java-library'
id 'jacoco'
}
group = 'com.ishland'
version = '0.0.1-SNAPSHOT'
repositories {
mavenCentral()
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
dependencies {
// https://mvnrepository.com/artifact/it.unimi.dsi/fastutil
implementation 'it.unimi.dsi:fastutil:8.5.12'
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
implementation 'org.slf4j:slf4j-api:2.0.9'
// https://mvnrepository.com/artifact/io.reactivex.rxjava3/rxjava
api 'io.reactivex.rxjava3:rxjava:3.1.8'
// https://mvnrepository.com/artifact/ch.qos.logback/logback-core
testRuntimeOnly runtimeOnly('ch.qos.logback:logback-classic:1.4.11')
// https://mvnrepository.com/artifact/org.jctools/jctools-core
testImplementation 'org.jctools:jctools-core:4.0.5'
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testImplementation 'org.mockito:mockito-core:5.6.0'
testImplementation 'org.mockito:mockito-junit-jupiter:5.6.0'
}
test {
useJUnitPlatform()
finalizedBy jacocoTestReport
}
jacocoTestReport {
reports {
xml.required = true
html.required = true
}
dependsOn test
}