Skip to content

Commit 7d3414a

Browse files
committed
Finish v0.14.2
2 parents 12de4f2 + 499acbc commit 7d3414a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
java_version: ['17', '21']
11+
java_version: ['17', '21', '23']
1212
os: [ubuntu-latest, windows-latest, macOS-latest]
1313
steps:
1414
- uses: actions/checkout@v4

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ dependencies {
4747

4848
// прочее
4949
implementation("commons-io", "commons-io", "2.18.0")
50-
api("io.github.1c-syntax", "bsl-common-library", "0.7.1")
50+
api("io.github.1c-syntax", "bsl-common-library", "0.8.0")
5151

5252
// тестирование
5353
testImplementation("org.junit.jupiter", "junit-jupiter-api", "5.11.4")
@@ -84,7 +84,7 @@ tasks.check {
8484
tasks.jacocoTestReport {
8585
reports {
8686
xml.required.set(true)
87-
xml.outputLocation.set(File("$buildDir/reports/jacoco/test/jacoco.xml"))
87+
xml.outputLocation.set(File("${layout.buildDirectory.get()}/reports/jacoco/test/jacoco.xml"))
8888
}
8989
}
9090

@@ -101,7 +101,7 @@ sonarqube {
101101
property("sonar.organization", "1c-syntax")
102102
property("sonar.projectKey", "1c-syntax_supportconf")
103103
property("sonar.projectName", "Support Configuration")
104-
property("sonar.coverage.jacoco.xmlReportPaths", "$buildDir/reports/jacoco/test/jacoco.xml")
104+
property("sonar.coverage.jacoco.xmlReportPaths", "${layout.buildDirectory.get()}/reports/jacoco/test/jacoco.xml")
105105
}
106106
}
107107

0 commit comments

Comments
 (0)