Skip to content

Commit abee765

Browse files
authored
MINOR: build dependecies - version updates (#20656)
Extends from: #19513 details: - scala-logging_2.13: Updated from 3.9.5 to 3.9.6 - org.owasp.dependencycheck: Updated from 12.1.3 to 12.1.8 - org.scoverage: Updated from 8.0.3 to 8.1 - com.diffplug.spotless: Updated from 7.2.1 to 8.0.0 - scalafmt: Updated from 3.7.14 to 3.10.0 - grgit: Updated from 4.1.1 to 5.3.3 - jacoco: Updated from 0.8.13 to 0.8.14 - scoverage: Updated from 2.0.11 to 2.3.0 Reviewers: Chia-Ping Tsai <[email protected]>
1 parent 388739f commit abee765

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed

LICENSE-binary

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ License Version 2.0:
249249
- plexus-utils-3.5.1
250250
- rocksdbjni-10.1.3
251251
- scala-library-2.13.17
252-
- scala-logging_2.13-3.9.5
252+
- scala-logging_2.13-3.9.6
253253
- scala-reflect-2.13.17
254254
- snappy-java-1.1.10.7
255255
- snakeyaml-2.4

build.gradle

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ plugins {
3333
id 'idea'
3434
id 'jacoco'
3535
id 'java-library'
36-
id 'org.owasp.dependencycheck' version '12.1.3'
36+
id 'org.owasp.dependencycheck' version '12.1.8'
3737
id 'org.nosphere.apache.rat' version "0.8.1"
3838
id "io.swagger.core.v3.swagger-gradle-plugin" version "${swaggerVersion}"
3939

4040
id "com.github.spotbugs" version '6.2.5' apply false
41-
id 'org.scoverage' version '8.0.3' apply false
41+
id 'org.scoverage' version '8.1' apply false
4242
id 'com.gradleup.shadow' version '8.3.9' apply false
43-
id 'com.diffplug.spotless' version "7.2.1"
43+
id 'com.diffplug.spotless' version "8.0.0"
4444
}
4545

4646
ext {
@@ -1129,9 +1129,7 @@ project(':core') {
11291129
if (userEnableTestCoverage) {
11301130
scoverage {
11311131
scoverageVersion = versions.scoverage
1132-
if (versions.baseScala == '2.13') {
1133-
scoverageScalaVersion = '2.13.9' // there's no newer 2.13 artifact, org.scoverage:scalac-scoverage-plugin_2.13.9:2.0.11 is the latest as of now
1134-
}
1132+
scoverageScalaVersion = '2.13.16' // `org.scoverage:scalac-scoverage-plugin_2.13.16:2.3.0` is the latest as of now
11351133
reportDir = file("${layout.buildDirectory.get().asFile.path}/scoverage")
11361134
highlighting = false
11371135
minimumRate = 0.0

checkstyle/.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
15-
version = 3.7.14
15+
version = 3.10.0
1616
runner.dialect = scala213
1717
docstrings.style = Asterisk
1818
docstrings.wrap = false

gradle/dependencies.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,17 +61,17 @@ versions += [
6161
commonsValidator: "1.10.0",
6262
classgraph: "4.8.179",
6363
gradle: "9.1.0",
64-
grgit: "4.1.1",
64+
grgit: "5.3.3",
6565
httpclient: "4.5.14",
6666
jackson: "2.19.0",
67-
jacoco: "0.8.13",
67+
jacoco: "0.8.14",
6868
javassist: "3.30.2-GA",
6969
jetty: "12.0.22",
7070
jersey: "3.1.10",
7171
jline: "3.30.4",
7272
jmh: "1.37",
7373
hamcrest: "3.0",
74-
scalaLogging: "3.9.5",
74+
scalaLogging: "3.9.6",
7575
jaxAnnotation: "1.3.2",
7676
jaxb: "2.3.1",
7777
jakartaRs: "3.1.0",
@@ -119,8 +119,8 @@ versions += [
119119
// When updating the scalafmt version please also update the version field in checkstyle/.scalafmt.conf. scalafmt now
120120
// has the version field as mandatory in its configuration, see
121121
// https://github.com/scalameta/scalafmt/releases/tag/v3.1.0.
122-
scalafmt: "3.7.14",
123-
scoverage: "2.0.11",
122+
scalafmt: "3.10.0",
123+
scoverage: "2.3.0",
124124
slf4j: "1.7.36",
125125
snappy: "1.1.10.7",
126126
spotbugs: "4.9.4",

0 commit comments

Comments
 (0)