File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
ml-development-tools/src/main/kotlin/com/marklogic/client/tools/gradle Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,15 @@ package com.marklogic.client.tools.gradle
17
17
18
18
import com.marklogic.client.tools.proxy.Generator
19
19
import org.gradle.api.DefaultTask
20
+ import org.gradle.api.tasks.Input
20
21
import org.gradle.api.tasks.TaskAction
21
22
22
23
open class EndpointProxiesGenTask : DefaultTask () {
23
24
private val generator = Generator ()
24
25
26
+ @Input
25
27
var serviceDeclarationFile: String = " "
28
+ @Input
26
29
var javaBaseDirectory: String = " "
27
30
28
31
@TaskAction
Original file line number Diff line number Diff line change @@ -17,12 +17,15 @@ package com.marklogic.client.tools.gradle
17
17
18
18
import com.marklogic.client.tools.proxy.Generator
19
19
import org.gradle.api.DefaultTask
20
+ import org.gradle.api.tasks.Input
20
21
import org.gradle.api.tasks.TaskAction
21
22
22
23
open class ModuleInitTask : DefaultTask () {
23
24
private val generator = Generator ()
24
25
26
+ @Input
25
27
var endpointDeclarationFile: String = " "
28
+ @Input
26
29
var moduleExtension: String = " "
27
30
28
31
@TaskAction
Original file line number Diff line number Diff line change @@ -17,13 +17,16 @@ package com.marklogic.client.tools.gradle
17
17
18
18
import com.marklogic.client.tools.proxy.Generator
19
19
import org.gradle.api.DefaultTask
20
+ import org.gradle.api.tasks.Input
20
21
import org.gradle.api.tasks.TaskAction
21
22
22
23
open class ServiceCompareTask : DefaultTask () {
23
24
private val generator = Generator ()
24
25
25
- var customServiceDeclarationFile: String = " "
26
- var baseServiceDeclarationFile: String = " "
26
+ @Input
27
+ var customServiceDeclarationFile: String = " "
28
+ @Input
29
+ var baseServiceDeclarationFile: String = " "
27
30
28
31
@TaskAction
29
32
fun compareCustomServiceToBase () {
You can’t perform that action at this time.
0 commit comments