File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/kotlin/org/springdoc/openapi/gradle/plugin Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import org.gradle.api.Plugin
6
6
import org.gradle.api.Project
7
7
import org.slf4j.LoggerFactory
8
8
9
- open class OpenApiGradlePlugin : Plugin <Project > {
9
+ open class OpenApiGradlePlugin : Plugin <Project > {
10
10
private val LOGGER = LoggerFactory .getLogger(OpenApiGradlePlugin ::class .java)
11
11
12
12
override fun apply (project : Project ) {
@@ -32,7 +32,7 @@ open class OpenApiGradlePlugin: Plugin<Project> {
32
32
}
33
33
34
34
// This is my task. Before I can run it I have to run the dependent tasks
35
- val openApiGeneratorTask = project.tasks.register(OPEN__API_TASK_NAME , OpenApiGeneratorTask ::class .java) { openApiGenTask ->
35
+ project.tasks.register(OPEN__API_TASK_NAME , OpenApiGeneratorTask ::class .java) { openApiGenTask ->
36
36
openApiGenTask.dependsOn(forkedSpringBoot)
37
37
38
38
openApiGenTask.doLast {
You can’t perform that action at this time.
0 commit comments