Skip to content

Commit a0c6131

Browse files
authored
Merge pull request #1578 from lesserwhirls/deps
Upgrade 3rd party dependencies
2 parents 39d0cc4 + 13bb5ab commit a0c6131

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

build-logic-ncj/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,6 @@ spotless {
2525

2626
// Helper function that transforms a plugin alias from the version catalog
2727
// into a valid dependency notation
28-
fun plugin(plugin: Provider<PluginDependency>) =
29-
plugin.map { "${it.pluginId}:${it.pluginId}.gradle.plugin:${it.version}" }
28+
fun plugin(plugin: Provider<PluginDependency>) = plugin.map {
29+
"${it.pluginId}:${it.pluginId}.gradle.plugin:${it.version}"
30+
}

gradle/ncj.libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ netcdf-java = "5.10.0-SNAPSHOT"
44
unidata-doc-theme = "0.1.1"
55

66
# 3rd party dependencies
7-
awssdk = "2.46.5"
7+
awssdk = "2.46.17"
88
awssdkv1 = "1.12.797"
99
commons-math3 = "3.6.1"
1010
bounce = "0.18"
11-
grpc = "1.81.0"
11+
grpc = "1.82.1"
1212
guava = "33.6.0-jre"
1313
httpcomponents = "4.5.14"
1414
jackson = "2.22.0"
@@ -20,10 +20,10 @@ jgoodies-forms = "1.6.0"
2020
jj2000 = "5.4"
2121
joda-time = "2.14.2"
2222
jsr305 = "3.0.2"
23-
jna = "5.19.0"
23+
jna = "5.19.1"
2424
lgooddatepicker = "11.2.1"
2525
mcidas = "20231121"
26-
protobuf = "4.35.0"
26+
protobuf = "4.35.1"
2727
re2j = "1.8"
2828
sensorweb-waterml = "2.7.0"
2929
slf4j = "2.0.18"
@@ -118,5 +118,5 @@ execfork = { id = "com.github.psxpaul.execfork", version = "0.2.2"}
118118
javacc = { id = "org.javacc.javacc", version = "4.0.3" }
119119
protobuf = { id = "com.google.protobuf", version = "0.10.0" }
120120
shadow = { id = "com.gradleup.shadow", version = "9.4.2" }
121-
spotless = { id = "com.diffplug.spotless", version = "8.6.0" }
121+
spotless = { id = "com.diffplug.spotless", version = "8.7.0" }
122122
versions = { id = "com.github.ben-manes.versions", version = "0.54.0" }

netcdf4/build.gradle.kts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@ val unloadedTestSourceSet =
2222
runtimeClasspath += sourceSets.main.get().output
2323
}
2424

25-
val unloadedTestImplementation by
26-
configurations.getting {
27-
extendsFrom(configurations.implementation.get(), configurations.testImplementation.get())
28-
}
25+
val unloadedTestImplementation by configurations.getting {
26+
extendsFrom(configurations.implementation.get(), configurations.testImplementation.get())
27+
}
2928

3029
val unloadedTestRuntimeOnly by configurations.getting
3130

0 commit comments

Comments
 (0)