Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/any/shared-mvn-coords.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ext {
depVersion.gwt = '2.8.2'
// needs to match version used in threddsIso
depVersion.jaxen = '1.1.6'
depVersion.netcdfJava = '5.9.1'
depVersion.netcdfJava = '5.10.0-SNAPSHOT'
// gradle seems to have issues with the compileOnly configuration, so we need to provide the full maven
// coordinates for jakarta.servlet-api if the gradle plugin in applied. If we don't, we see errors like this:
depVersion.jakartaServletApi = '5.0.0'
Expand Down
2 changes: 1 addition & 1 deletion tds-platform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
// when resolving dependencies (even transitively)
// If there is a conflict (previously hidden by optimistic resolution), we should get an error when we build, and
// at that point we can take things on a case-by-case basis.
api enforcedPlatform("edu.ucar:netcdf-java-bom:${depVersion.netcdfJava}")
api enforcedPlatform("edu.ucar:netcdf-java-platform:${depVersion.netcdfJava}")
api enforcedPlatform('org.springframework:spring-framework-bom:6.2.10')
api enforcedPlatform('org.springframework.security:spring-security-bom:6.5.2')
api enforcedPlatform("org.apache.logging.log4j:log4j-bom:2.25.1")
Expand Down
1 change: 1 addition & 0 deletions tds-testing-platform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dependencies {
api enforcedPlatform(project(':tds-platform'))

constraints {
api "edu.ucar:cdm-test-utils:${depVersion.netcdfJava}"

// Spring
api 'org.springframework:spring-test'
Expand Down
Loading