Skip to content

Commit

Permalink
исправление ошибки Cannot access output property 'outputDir' of task …
Browse files Browse the repository at this point in the history
…':newDiagnostic'.
  • Loading branch information
bia-tech committed Jul 10, 2024
1 parent 557ccc2 commit d30e4a5
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
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: 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 d30e4a5

Please sign in to comment.