File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/kotlin/org/springdoc/openapi/gradle/plugin Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ plugins {
77}
88
99group = " org.springdoc"
10- version = " 0 .0.1-BETA "
10+ version = " 1 .0.0 "
1111
1212sonarqube {
1313 properties {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import org.gradle.api.DefaultTask
1010import org.gradle.api.file.DirectoryProperty
1111import org.gradle.api.provider.Property
1212import org.gradle.api.tasks.Input
13- import org.gradle.api.tasks.Nested
13+ import org.gradle.api.tasks.Internal
1414import org.gradle.api.tasks.OutputDirectory
1515import org.gradle.api.tasks.TaskAction
1616import java.net.ConnectException
@@ -26,7 +26,7 @@ open class OpenApiGeneratorTask : DefaultTask() {
2626 @get:OutputDirectory
2727 val outputDir: DirectoryProperty = project.objects.directoryProperty()
2828 private val waitTimeInSeconds: Property <Int > = project.objects.property(Int ::class .java)
29- @get:Nested
29+ @Internal
3030 val taskError: Property <String > = project.objects.property(String ::class .java)
3131
3232 init {
You can’t perform that action at this time.
0 commit comments