File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/main/kotlin/org/springdoc/openapi/gradle/plugin Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
6
6
}
7
7
8
8
group = " org.springdoc"
9
- version = " 0 .0.1-BETA "
9
+ version = " 1 .0.0 "
10
10
11
11
repositories {
12
12
mavenCentral()
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import org.gradle.api.DefaultTask
10
10
import org.gradle.api.file.DirectoryProperty
11
11
import org.gradle.api.provider.Property
12
12
import org.gradle.api.tasks.Input
13
+ import org.gradle.api.tasks.Internal
13
14
import org.gradle.api.tasks.OutputDirectory
14
15
import org.gradle.api.tasks.TaskAction
15
16
import java.net.ConnectException
@@ -25,6 +26,7 @@ open class OpenApiGeneratorTask: DefaultTask() {
25
26
@get:OutputDirectory
26
27
val outputDir: DirectoryProperty = project.objects.directoryProperty()
27
28
private val waitTimeInSeconds: Property <Int > = project.objects.property(Int ::class .java)
29
+ @Internal
28
30
val taskError: Property <String > = project.objects.property(String ::class .java)
29
31
30
32
init {
You can’t perform that action at this time.
0 commit comments