Skip to content

Commit 499acbc

Browse files
committed
Finish v0.14.2
2 parents bb8e35b + 93c309a commit 499acbc

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
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: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ plugins {
99
id("org.sonarqube") version "6.0.1.5171"
1010
id("org.cadixdev.licenser") version "0.6.1"
1111
id("me.qoomon.git-versioning") version "6.4.4"
12-
id("io.freefair.lombok") version "8.11"
13-
id("io.freefair.javadoc-links") version "8.11"
14-
id("io.freefair.javadoc-utf-8") version "8.11"
15-
id("io.freefair.maven-central.validate-poms") version "8.11"
16-
id("com.github.ben-manes.versions") version "0.51.0"
12+
id("io.freefair.lombok") version "8.12.1"
13+
id("io.freefair.javadoc-links") version "8.12.1"
14+
id("io.freefair.javadoc-utf-8") version "8.12.1"
15+
id("io.freefair.maven-central.validate-poms") version "8.12.1"
16+
id("com.github.ben-manes.versions") version "0.52.0"
1717
id("ru.vyarus.pom") version "3.0.0"
1818
id("io.codearte.nexus-staging") version "0.30.0"
1919
}
@@ -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

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)