forked from Unidata/netcdf-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
33 lines (26 loc) · 907 Bytes
/
Copy pathbuild.gradle.kts
File metadata and controls
33 lines (26 loc) · 907 Bytes
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
/*
* Copyright (c) 2025 University Corporation for Atmospheric Research/Unidata
* See LICENSE for license information.
*/
plugins { id("platform-conventions") }
description =
"Platform containing the test-only dependencies of the public artifacts that comprise the netCDF-Java Library. Published for use by the THREDDS Data Server."
extra["project.title"] = "netCDF-Java BOM test-only 3rd party libraries"
// allow references to other BOMs
javaPlatform.allowDependencies()
dependencies {
// covers libs.junit5.vintageEngine, libs.junit5.platformLauncher
api(platform(libs.junit5.bom))
constraints {
api((project(":cdm-test-utils")))
api(libs.commons.compress)
api(libs.commons.io)
api(libs.google.truth)
api(libs.grpc.testing)
api(libs.jsoup)
api(libs.junit4)
api(libs.logback.classic)
api(libs.mockito.core)
api(libs.pragmatists.junitparams)
}
}