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
66import org.gradle.api.Project
77import org.slf4j.LoggerFactory
88
9- open class OpenApiGradlePlugin : Plugin <Project > {
9+ open class OpenApiGradlePlugin : Plugin <Project > {
1010 private val LOGGER = LoggerFactory .getLogger(OpenApiGradlePlugin ::class .java)
1111
1212 override fun apply (project : Project ) {
@@ -32,7 +32,7 @@ open class OpenApiGradlePlugin: Plugin<Project> {
3232 }
3333
3434 // 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 ->
3636 openApiGenTask.dependsOn(forkedSpringBoot)
3737
3838 openApiGenTask.doLast {
You can’t perform that action at this time.
0 commit comments