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
16
16
import org.gradle.api.provider.MapProperty
17
17
import org.gradle.api.provider.Property
18
18
import org.gradle.api.tasks.Input
19
+ import org.gradle.api.tasks.Internal
19
20
import org.gradle.api.tasks.OutputDirectory
20
21
import org.gradle.api.tasks.TaskAction
21
22
import java.net.ConnectException
@@ -40,7 +41,8 @@ open class OpenApiGeneratorTask : DefaultTask() {
40
41
41
42
@get:OutputDirectory
42
43
val outputDir: DirectoryProperty = project.objects.directoryProperty()
43
- private val waitTimeInSeconds: Property <Int > =
44
+ @get:Internal
45
+ val waitTimeInSeconds: Property <Int > =
44
46
project.objects.property(Int ::class .java)
45
47
46
48
init {
You can’t perform that action at this time.
0 commit comments