We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fff1285 commit b5e2510Copy full SHA for b5e2510
src/main/kotlin/org/springdoc/openapi/gradle/plugin/OpenApiGeneratorTask.kt
@@ -16,6 +16,7 @@ import org.gradle.api.file.DirectoryProperty
16
import org.gradle.api.provider.MapProperty
17
import org.gradle.api.provider.Property
18
import org.gradle.api.tasks.Input
19
+import org.gradle.api.tasks.Internal
20
import org.gradle.api.tasks.OutputDirectory
21
import org.gradle.api.tasks.TaskAction
22
import java.net.ConnectException
@@ -40,7 +41,8 @@ open class OpenApiGeneratorTask : DefaultTask() {
40
41
42
@get:OutputDirectory
43
val outputDir: DirectoryProperty = project.objects.directoryProperty()
- private val waitTimeInSeconds: Property<Int> =
44
+ @get:Internal
45
+ val waitTimeInSeconds: Property<Int> =
46
project.objects.property(Int::class.java)
47
48
init {
0 commit comments