@@ -8,18 +8,21 @@ val dependencyVersions = hashMapOf<String, String>()
8
8
rootProject.extra[" versions" ] = dependencyVersions
9
9
10
10
val DEPENDENCY_BOMS = listOf (
11
+ // for some reason boms show up as runtime dependencies in license and vulnerability scans
12
+ // even if they are only used by test dependencies, so not using junit bom here
13
+ // (which is EPL licensed) or armeria bom (which is Apache licensed but is getting flagged
14
+ // by FOSSA for containing EPL-licensed)
15
+
11
16
" com.fasterxml.jackson:jackson-bom:2.18.2" ,
12
17
" com.google.guava:guava-bom:33.4.0-jre" ,
13
18
" com.google.protobuf:protobuf-bom:4.29.3" ,
14
- " com.linecorp.armeria:armeria-bom:1.31.3" ,
15
19
" com.squareup.okhttp3:okhttp-bom:4.12.0" ,
16
20
" com.squareup.okio:okio-bom:3.10.2" , // applies to transitive dependencies of okhttp
17
21
" io.grpc:grpc-bom:1.70.0" ,
18
22
" io.netty:netty-bom:4.1.117.Final" ,
19
23
" io.zipkin.brave:brave-bom:6.0.3" ,
20
24
" io.zipkin.reporter2:zipkin-reporter-bom:3.4.3" ,
21
25
" org.assertj:assertj-bom:3.27.3" ,
22
- " org.junit:junit-bom:5.11.4" ,
23
26
" org.testcontainers:testcontainers-bom:1.20.4" ,
24
27
" org.snakeyaml:snakeyaml-engine:2.9"
25
28
)
@@ -33,8 +36,18 @@ val slf4jVersion = "2.0.16"
33
36
val opencensusVersion = " 0.31.1"
34
37
val prometheusClientVersion = " 0.16.0"
35
38
val prometheusServerVersion = " 1.3.5"
39
+ val armeriaVersion = " 1.31.3"
40
+ val junitVersion = " 5.11.4"
36
41
37
42
val DEPENDENCIES = listOf (
43
+ " org.junit.jupiter:junit-jupiter-api:${junitVersion} " ,
44
+ " org.junit.jupiter:junit-jupiter-params:${junitVersion} " ,
45
+ " org.junit.jupiter:junit-jupiter-pioneer:${junitVersion} " ,
46
+ " com.linecorp.armeria:armeria:${armeriaVersion} " ,
47
+ " com.linecorp.armeria:armeria-grpc:${armeriaVersion} " ,
48
+ " com.linecorp.armeria:armeria-grpc-protocol:${armeriaVersion} " ,
49
+ " com.linecorp.armeria:armeria-junit5:${armeriaVersion} " ,
50
+
38
51
" com.google.auto.value:auto-value:${autoValueVersion} " ,
39
52
" com.google.auto.value:auto-value-annotations:${autoValueVersion} " ,
40
53
" com.google.errorprone:error_prone_annotations:${errorProneVersion} " ,
0 commit comments