Skip to content

Commit

Permalink
Merge branch 'release/v0.8.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
bia-tech committed Jul 10, 2024
2 parents 80a0f10 + 4919eee commit 59655c7
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:
strategy:
fail-fast: false
matrix:
java_version: ['17', '20']
java_version: ['17', '20', '21']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java_version }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java_version }}
distribution: 'adopt'
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew check --stacktrace
- name: Archive test results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java_version }}
distribution: 'adopt'
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew check --stacktrace
- name: Publish plugin
Expand Down
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# BSLLS Development tools gradle plugin

[![JitPack](https://jitpack.io/v/1c-syntax/bslls-dev-tools.svg)](https://jitpack.io/#1c-syntax/bslls-dev-tools)

Плагин gradle для автоматизации части действий при разработке в проекте [BSL Language Server](https://1c-syntax.github.io/bsl-language-server)

## TODO LIST
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ gradlePlugin {
}

group = "io.github.1c-syntax"
version = "0.8.0"
version = "0.8.1"

repositories {
mavenLocal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class BSLDeveloperToolsPlugin : Plugin<Project> {
override fun apply(project: Project) {
project.tasks.register("newDiagnostic", NewDiagnosticTask::class.java) {
it.outputDir.set(project.layout.projectDirectory)
it.doNotTrackState("")
}

with(project.tasks) {
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/TemplateDiagnostic.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.github._1c_syntax.bsl.languageserver.diagnostics;

import com.github._1c_syntax.bsl.languageserver.diagnostics.metadata.DiagnosticInfo;
import com.github._1c_syntax.bsl.languageserver.diagnostics.metadata.DiagnosticMetadata;
import com.github._1c_syntax.bsl.languageserver.diagnostics.metadata.DiagnosticSeverity;
import com.github._1c_syntax.bsl.languageserver.diagnostics.metadata.DiagnosticTag;
Expand Down

0 comments on commit 59655c7

Please sign in to comment.