MINOR: Replace deprecated Project.buildDir property (#18501)

Reviewers: Mickael Maison <mickael.maison@gmail.com>
This commit is contained in:
TengYao Chi 2025-01-14 23:54:58 +08:00 committed by GitHub
parent c00c576b65
commit 81938eb086
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1162,7 +1162,7 @@ project(':core') {
if (versions.baseScala == '2.13') { if (versions.baseScala == '2.13') {
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 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
} }
reportDir = file("${rootProject.buildDir}/scoverage") reportDir = file("${layout.buildDirectory.get().asFile.path}/scoverage")
highlighting = false highlighting = false
minimumRate = 0.0 minimumRate = 0.0
} }