Skip to content

Commit 5d9afd4

Browse files
committed
clean up
1 parent b6a126d commit 5d9afd4

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

src/main/kotlin/io/openapiprocessor/gradle/OpenApiProcessorExtension.kt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,18 @@ import java.io.File
2424
* apiPath "...."
2525
*
2626
* spring {
27-
* processor "...:...:..."
27+
* dependencies {
28+
* process "...:...:..."
29+
* }
2830
* targetDir "..."
2931
*
3032
* ... other
3133
* }
3234
*
3335
* json {
34-
* processor "...:...:..."
36+
* dependencies {
37+
* process "...:...:..."
38+
* }
3539
* targetDir "..."
3640
*
3741
* ... other

src/main/kotlin/io/openapiprocessor/gradle/OpenApiProcessorTask.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ import org.gradle.workers.WorkerExecutor
2626
import javax.inject.Inject
2727

2828
/**
29-
* processor task. Uses a worker executor to run the processor with an isolated "openapiProcessor"
29+
* "processor" task. Uses a worker executor to run the processor with an isolated "openapiProcessor"
3030
* configuration classpath.
3131
*/
3232
@CacheableTask
3333
abstract class OpenApiProcessorTask: DefaultTask() {
3434

3535
/**
36-
* Source directory (i.e. parent) of the openapi.yaml input file. Used by Gradle for the up-to-date check.
36+
* Source directory (i.e., parent) of the openapi.yaml input file. Used by Gradle for the up-to-date check.
3737
*
3838
* @return parent directory of the openapi.yaml
3939
*/

0 commit comments

Comments
 (0)