Skip to content

Commit ed6c62a

Browse files
committed
Finish v0.30.0
2 parents 134c0cd + c2e7bc2 commit ed6c62a

File tree

68 files changed

+3382
-1950
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+3382
-1950
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: ./gradlew check --stacktrace
2424
- name: Archive test results
2525
if: failure()
26-
uses: actions/upload-artifact@v5
26+
uses: actions/upload-artifact@v6
2727
with:
2828
name: junit_report_${{ matrix.os }}_${{ matrix.java_version }}
2929
path: build/reports/tests/test

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
23+
persist-credentials: false
2324

2425
- name: Setup JDK
2526
uses: actions/setup-java@v5

.github/workflows/javadoc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
- uses: actions/checkout@v6
1010
with:
1111
fetch-depth: 0
12+
persist-credentials: false
1213
- name: Set up JDK
1314
uses: actions/setup-java@v5
1415
with:

.github/workflows/publish-to-maven-central.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
18+
persist-credentials: false
1819
- name: Set up JDK
1920
uses: actions/setup-java@v5
2021
with:

.github/workflows/qa.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- uses: actions/checkout@v6
1616
with:
1717
fetch-depth: ''
18+
persist-credentials: false
1819
- run: |
1920
git fetch --prune --unshallow
2021
- name: Set up JDK 17

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
18+
persist-credentials: false
1819
- uses: actions/setup-java@v5
1920
with:
2021
java-version: 17

.github/workflows/update-gradle.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
- uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
16+
fetch-tags: true
17+
persist-credentials: false
1618

1719
- name: Set up JDK 17
1820
uses: actions/setup-java@v5

build.gradle.kts

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ plugins {
99
antlr
1010
id("org.cadixdev.licenser") version "0.6.1"
1111
id("me.qoomon.git-versioning") version "6.4.4"
12-
id("io.freefair.javadoc-links") version "9.1.0"
13-
id("io.freefair.javadoc-utf-8") version "9.1.0"
14-
id("io.freefair.maven-central.validate-poms") version "9.1.0"
12+
id("io.freefair.javadoc-links") version "9.2.0"
13+
id("io.freefair.javadoc-utf-8") version "9.2.0"
14+
id("io.freefair.lombok") version "9.2.0"
15+
id("io.freefair.maven-central.validate-poms") version "9.2.0"
1516
id("com.github.ben-manes.versions") version "0.53.0"
1617
id("ru.vyarus.pom") version "3.0.0"
1718
id("org.jreleaser") version "1.21.0"
18-
id("org.sonarqube") version "7.2.0.6526"
19+
id("org.sonarqube") version "7.2.2.6593"
1920
id("me.champeau.gradle.jmh") version "0.5.3"
2021
}
2122

@@ -96,6 +97,14 @@ tasks.named<org.gradle.jvm.tasks.Jar>("sourcesJar") {
9697
dependsOn(tasks.generateGrammarSource)
9798
}
9899

100+
tasks.named("delombok") {
101+
enabled = false
102+
}
103+
104+
tasks.maybeCreate("delombokTest").apply {
105+
enabled = false
106+
}
107+
99108
tasks.processTestResources {
100109
duplicatesStrategy = DuplicatesStrategy.INCLUDE
101110
}

src/jmh/java/com/github/_1c_syntax/bsl/parser/JMXBSLLexerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of BSL Parser.
33
*
4-
* Copyright (c) 2018-2025
4+
* Copyright (c) 2018-2026
55
* Alexey Sosnoviy <labotamy@gmail.com>, Nikita Fedkin <nixel2007@gmail.com>, Sergey Batanov <sergey.batanov@dmpas.ru>
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later

src/jmh/java/com/github/_1c_syntax/bsl/parser/JMXBSLParserTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of BSL Parser.
33
*
4-
* Copyright (c) 2018-2025
4+
* Copyright (c) 2018-2026
55
* Alexey Sosnoviy <labotamy@gmail.com>, Nikita Fedkin <nixel2007@gmail.com>, Sergey Batanov <sergey.batanov@dmpas.ru>
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later

0 commit comments

Comments
 (0)