File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/main/kotlin/org/springdoc/openapi/gradle/plugin Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
66}
77
88group = " org.springdoc"
9- version = " 0 .0.1-BETA "
9+ version = " 1 .0.0 "
1010
1111repositories {
1212 mavenCentral()
Original file line number Diff line number Diff line change @@ -10,6 +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.Internal
1314import org.gradle.api.tasks.OutputDirectory
1415import org.gradle.api.tasks.TaskAction
1516import java.net.ConnectException
@@ -25,6 +26,7 @@ open class OpenApiGeneratorTask: DefaultTask() {
2526 @get:OutputDirectory
2627 val outputDir: DirectoryProperty = project.objects.directoryProperty()
2728 private val waitTimeInSeconds: Property <Int > = project.objects.property(Int ::class .java)
29+ @Internal
2830 val taskError: Property <String > = project.objects.property(String ::class .java)
2931
3032 init {
You can’t perform that action at this time.
0 commit comments