1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-25 07:57:12 -07:00
This commit is contained in:
Cedric Beust 2015-10-10 04:36:34 -07:00
parent 4195619a32
commit 9ae00e8d39

View file

@ -7,7 +7,12 @@ annotation class Directive
@Retention(AnnotationRetention.RUNTIME)
annotation class Task(val name: String,
val description: String,
/** Tasks that this task depends on */
val runBefore: Array<String> = arrayOf(),
/** Tasks that this task will run after if they get run */
val runAfter: Array<String> = arrayOf(),
/** Tasks that this task will always run after */
val wrapAfter: Array<String> = arrayOf()
)
)