-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathversions.gradle
More file actions
53 lines (48 loc) · 1.89 KB
/
Copy pathversions.gradle
File metadata and controls
53 lines (48 loc) · 1.89 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
dependencyManagement {
// https://docs.spring.io/dependency-management-plugin/docs/current/reference/html/#pom-generation-disabling
generatedPomCustomization {
enabled = false
}
dependencies {
dependency "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4"
dependency "com.google.guava:guava:33.3.1-jre"
dependency "org.slf4j:slf4j-api:2.0.9"
dependencySet(group: 'org.apache.logging.log4j', version: '2.25.4') {
entry 'log4j-core'
entry 'log4j-slf4j2-impl'
}
dependencySet(group: 'org.junit.jupiter', version: '5.13.4') {
entry 'junit-jupiter-api'
entry 'junit-jupiter-engine'
entry 'junit-jupiter-params'
}
dependencySet(group: 'org.junit.platform', version: '1.13.4') {
entry 'junit-platform-launcher'
entry 'junit-platform-engine'
}
dependency "io.mockk:mockk:1.13.3"
dependency "org.assertj:assertj-core:3.27.4"
dependencySet(group: "com.google.protobuf", version: "3.25.5") {
entry 'protobuf-java'
entry 'protoc'
}
dependencySet(group: "io.netty", version: "4.2.10.Final") {
entry 'netty-common'
entry 'netty-handler'
entry 'netty-transport'
entry 'netty-buffer'
entry 'netty-codec-http'
entry 'netty-codec-protobuf'
entry 'netty-codec-native-quic'
entry 'netty-transport-classes-epoll'
}
dependency "io.netty:netty-tcnative-boringssl-static:2.0.76.Final"
dependency "com.github.multiformats:java-multibase:v1.1.1"
dependency "tech.pegasys:noise-java:22.1.0"
dependencySet(group: "org.bouncycastle", version: "1.78.1") {
entry 'bcprov-jdk18on'
entry 'bcpkix-jdk18on'
entry 'bctls-jdk18on'
}
}
}