Skip to content

Commit 9c4ccc0

Browse files
committed
Finish 0.24.1
2 parents c092db3 + 2046c53 commit 9c4ccc0

6 files changed

Lines changed: 83 additions & 36 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Update Gradle Wrapper
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: "0 0 * * 0"
7+
8+
jobs:
9+
update-gradle-wrapper:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Set up JDK 17
16+
uses: actions/setup-java@v4
17+
with:
18+
java-version: 17
19+
distribution: 'temurin'
20+
cache: gradle
21+
22+
- name: Update Gradle Wrapper
23+
uses: gradle-update/update-gradle-wrapper-action@v2
24+
with:
25+
repo-token: ${{ secrets.GITHUB_TOKEN }}
26+
set-distribution-checksum: false

build.gradle.kts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,14 @@ repositories {
2222
maven {
2323
url = URI("https://s01.oss.sonatype.org/content/repositories/snapshots")
2424
}
25-
maven {
26-
url = URI("https://jitpack.io")
27-
}
2825
}
2926

3027
val sonarQubeVersion = "9.9.0.65466"
3128

3229
dependencies {
3330
implementation("org.sonarsource.api.plugin", "sonar-plugin-api", "9.14.0.375")
3431

35-
implementation("io.github.1c-syntax", "bsl-language-server", "0.24.0") {
32+
implementation("io.github.1c-syntax", "bsl-language-server", "0.24.1") {
3633
exclude("com.contrastsecurity", "java-sarif")
3734
exclude("io.sentry", "sentry-logback")
3835
exclude("org.springframework.boot", "spring-boot-starter-websocket")
@@ -85,7 +82,7 @@ tasks.check {
8582
tasks.jacocoTestReport {
8683
reports {
8784
xml.required.set(true)
88-
xml.outputLocation.set(File("$buildDir/reports/jacoco/test/jacoco.xml"))
85+
xml.outputLocation.set(File("${layout.buildDirectory.get()}/reports/jacoco/test/jacoco.xml"))
8986
}
9087
}
9188

@@ -109,7 +106,7 @@ sonarqube {
109106
property("sonar.projectName", "SonarQube 1C (BSL) Community Plugin")
110107
property("sonar.exclusions", "**/gen/**/*.*")
111108
property("sonar.coverage.jacoco.xmlReportPaths",
112-
"$buildDir/reports/jacoco/test/jacoco.xml")
109+
"${layout.buildDirectory.get()}/reports/jacoco/test/jacoco.xml")
113110
}
114111
}
115112

gradle/wrapper/gradle-wrapper.jar

-15.7 KB
Binary file not shown.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
46
zipStoreBase=GRADLE_USER_HOME
57
zipStorePath=wrapper/dists

gradlew

Lines changed: 30 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 21 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)