We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 047b490 commit 0aa220aCopy full SHA for 0aa220a
src/main/kotlin/app/opendocument/ConanInstallTask.kt
@@ -47,18 +47,18 @@ abstract class ConanInstallTask : Exec() {
47
abstract val conanExecutable: Property<String>
48
49
@get:Input
50
- abstract val deployer: Property<String?>
+ @get:Optional
51
+ abstract val deployer: Property<String>
52
53
- abstract val deployerFolder: Property<String?>
54
55
+ abstract val deployerFolder: Property<String>
56
57
init {
58
profile.convention("default")
59
buildProfile.convention("default")
60
conanfile.convention(".")
61
conanExecutable.convention("conan")
- deployer.convention(null as String?)
- deployerFolder.convention(null as String?)
62
}
63
64
@get:OutputDirectory
0 commit comments