PackTask
annotation class PackTask(val stage: BuildStage = BuildStage.AUTOMATIC, val runAfter: Array<String> = [], val runBefore: Array<String> = [])
An annotation to mark PackTask functions.
Parameters
stage
Determines at which BuildStage this function will be run.
runAfter
The PackTasks which should be run before this class. This only affects functions that are configured to also run at the same BuildStage.
runBefore
The classes which should be initialized after this class. This only affects functions that are configured to also run at the same BuildStage.