File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/main/kotlin/org/springdoc/openapi/gradle/plugin Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import org.gradle.api.file.DirectoryProperty
1616import org.gradle.api.provider.MapProperty
1717import org.gradle.api.provider.Property
1818import org.gradle.api.tasks.Input
19+ import org.gradle.api.tasks.Internal
1920import org.gradle.api.tasks.OutputDirectory
2021import org.gradle.api.tasks.TaskAction
2122import java.net.ConnectException
@@ -40,7 +41,8 @@ open class OpenApiGeneratorTask : DefaultTask() {
4041
4142 @get:OutputDirectory
4243 val outputDir: DirectoryProperty = project.objects.directoryProperty()
43- private val waitTimeInSeconds: Property <Int > =
44+ @get:Internal
45+ val waitTimeInSeconds: Property <Int > =
4446 project.objects.property(Int ::class .java)
4547
4648 init {
You can’t perform that action at this time.
0 commit comments