Skip to content

Commit

Permalink
Finish 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
theshadowco committed Mar 20, 2022
2 parents ffe58eb + ac33e93 commit ccd3dcc
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pluginBundle {
}

group = "io.github.1c-syntax"
version = "0.6.0"
version = "0.7.0"

repositories {
mavenLocal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class BSLDeveloperToolsPlugin : Plugin<Project> {
project.tasks.register("precommit") {
it.description = "Run all precommit tasks"
it.group = "Developer tools"
it.dependsOn(":check")
it.dependsOn(":updateLicenses")
it.dependsOn(":updateDiagnosticDocs")
it.dependsOn(":updateDiagnosticsIndex")
it.dependsOn(":updateJsonSchema")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ open class GenerateDiagnosticDocsTask @javax.inject.Inject constructor(objects:
init {
group = "build"
description = "Generate diagnostic docs"
dependsOn(":jar")
dependsOn(":classes")
outputs.upToDateWhen { false }
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ open class GenerateDiagnosticsIndexTask @javax.inject.Inject constructor(objects
init {
group = "build"
description = "Generate diagnostics index"
dependsOn(":jar")
dependsOn(":classes")
outputs.upToDateWhen { false }
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ open class UpdateDiagnosticDocsTask @javax.inject.Inject constructor(objects: Ob
init {
group = "Developer tools"
description = "Updates diagnostic docs after changes"
dependsOn(":jar")
dependsOn(":classes")
outputs.upToDateWhen { false }
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ open class UpdateDiagnosticsIndexTask @javax.inject.Inject constructor(objects:
init {
group = "Developer tools"
description = "Update diagnostics index after changes"
dependsOn(":jar")
dependsOn(":classes")
outputs.upToDateWhen { false }
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ open class UpdateJsonSchemaTask @javax.inject.Inject constructor(objects: Object
init {
group = "Developer tools"
description = "Update json schema"
dependsOn(":jar")
dependsOn(":classes")
outputs.upToDateWhen { false }
}

Expand Down

0 comments on commit ccd3dcc

Please sign in to comment.