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
@@ -39,7 +40,8 @@ open class OpenApiGeneratorTask : DefaultTask() {
3940
4041 @get:OutputDirectory
4142 val outputDir: DirectoryProperty = project.objects.directoryProperty()
42- private val waitTimeInSeconds: Property <Int > =
43+ @get:Internal
44+ val waitTimeInSeconds: Property <Int > =
4345 project.objects.property(Int ::class .java)
4446
4547 init {
You can’t perform that action at this time.
0 commit comments