Skip to content

Commit

Permalink
Finish v0.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
theshadowco committed Feb 23, 2025
2 parents bb8e35b + 93c309a commit 499acbc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java_version: ['17', '21']
java_version: ['17', '21', '23']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
Expand Down
16 changes: 8 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ plugins {
id("org.sonarqube") version "6.0.1.5171"
id("org.cadixdev.licenser") version "0.6.1"
id("me.qoomon.git-versioning") version "6.4.4"
id("io.freefair.lombok") version "8.11"
id("io.freefair.javadoc-links") version "8.11"
id("io.freefair.javadoc-utf-8") version "8.11"
id("io.freefair.maven-central.validate-poms") version "8.11"
id("com.github.ben-manes.versions") version "0.51.0"
id("io.freefair.lombok") version "8.12.1"
id("io.freefair.javadoc-links") version "8.12.1"
id("io.freefair.javadoc-utf-8") version "8.12.1"
id("io.freefair.maven-central.validate-poms") version "8.12.1"
id("com.github.ben-manes.versions") version "0.52.0"
id("ru.vyarus.pom") version "3.0.0"
id("io.codearte.nexus-staging") version "0.30.0"
}
Expand Down Expand Up @@ -47,7 +47,7 @@ dependencies {

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

// тестирование
testImplementation("org.junit.jupiter", "junit-jupiter-api", "5.11.4")
Expand Down Expand Up @@ -84,7 +84,7 @@ tasks.check {
tasks.jacocoTestReport {
reports {
xml.required.set(true)
xml.outputLocation.set(File("$buildDir/reports/jacoco/test/jacoco.xml"))
xml.outputLocation.set(File("${layout.buildDirectory.get()}/reports/jacoco/test/jacoco.xml"))
}
}

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

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 499acbc

Please sign in to comment.