File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
fail-fast : false
10
10
matrix :
11
- java_version : ['17', '21']
11
+ java_version : ['17', '21', '23' ]
12
12
os : [ubuntu-latest, windows-latest, macOS-latest]
13
13
steps :
14
14
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ dependencies {
47
47
48
48
// прочее
49
49
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 " )
51
51
52
52
// тестирование
53
53
testImplementation(" org.junit.jupiter" , " junit-jupiter-api" , " 5.11.4" )
@@ -84,7 +84,7 @@ tasks.check {
84
84
tasks.jacocoTestReport {
85
85
reports {
86
86
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" ))
88
88
}
89
89
}
90
90
@@ -101,7 +101,7 @@ sonarqube {
101
101
property(" sonar.organization" , " 1c-syntax" )
102
102
property(" sonar.projectKey" , " 1c-syntax_supportconf" )
103
103
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" )
105
105
}
106
106
}
107
107
You can’t perform that action at this time.
0 commit comments