From 5c5cb0f87424e9c581bf173b0ea2b30417e7dd8b Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Thu, 17 Dec 2015 18:37:22 -0800 Subject: [PATCH] Default. --- src/main/kotlin/com/beust/kobalt/api/annotation/Annotations.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/beust/kobalt/api/annotation/Annotations.kt b/src/main/kotlin/com/beust/kobalt/api/annotation/Annotations.kt index 5b064b0d..5689284b 100644 --- a/src/main/kotlin/com/beust/kobalt/api/annotation/Annotations.kt +++ b/src/main/kotlin/com/beust/kobalt/api/annotation/Annotations.kt @@ -9,7 +9,7 @@ annotation class Directive @Retention(AnnotationRetention.RUNTIME) annotation class Task( val name: String, - val description: String, + val description: String = "", /** Tasks that this task depends on */ val runBefore: Array = arrayOf(),