-
Notifications
You must be signed in to change notification settings - Fork 484
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
58 lines (53 loc) · 2.38 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
58 lines (53 loc) · 2.38 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
plugins {
id("java-library")
id("eclipse")
alias(libs.plugins.gradle.versions)
alias(libs.plugins.spotless).apply(false)
}
tasks.named<Wrapper>("wrapper") {
distributionType = Wrapper.DistributionType.ALL
}
subprojects {
apply(plugin = "java-library")
dependencies {
implementation(rootProject.libs.jlayer) {
exclude(group = "junit", module = "junit")
}
compileOnly(rootProject.libs.lombok)
annotationProcessor(rootProject.libs.lombok)
testCompileOnly(rootProject.libs.lombok)
testAnnotationProcessor(rootProject.libs.lombok)
implementation(rootProject.libs.logback.classic)
implementation(rootProject.libs.caffeine)
implementation(rootProject.libs.gson)
implementation(rootProject.libs.guava)
implementation(rootProject.libs.dropwizard.websockets)
implementation(rootProject.libs.jakarta.mail)
implementation(rootProject.libs.jaxb.impl)
implementation(rootProject.libs.commons.io)
implementation(rootProject.libs.feign.gson)
implementation(rootProject.libs.commons.math3)
implementation(rootProject.libs.commons.text)
implementation(rootProject.libs.apache.httpmime)
implementation(rootProject.libs.java.websocket)
implementation(rootProject.libs.jetbrains.annotations)
implementation(rootProject.libs.okhttp)
implementation(rootProject.libs.xchart)
implementation(rootProject.libs.flatlaf)
implementation(rootProject.libs.snakeyaml.engine)
testImplementation(rootProject.libs.jackson.datatype.jsr310)
testImplementation(rootProject.libs.hamcrest.optional)
testImplementation(rootProject.libs.wiremock)
testImplementation(rootProject.libs.equals.verifier)
testImplementation(rootProject.libs.assertj.core)
testImplementation(rootProject.libs.awaitility)
testImplementation(rootProject.libs.hamcrest)
testImplementation(rootProject.libs.bundles.junit)
testImplementation(rootProject.libs.bundles.mockito)
testImplementation(rootProject.libs.sonatype.goodies.prefs)
testImplementation(rootProject.libs.bundles.xmlunit)
testImplementation(rootProject.libs.wiremock.junit5)
testRuntimeOnly(rootProject.libs.junit.jupiter.engine)
testRuntimeOnly(rootProject.libs.junit.platform.launcher)
}
}