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