module KPM::Tasks

def pull_kaui_war(version='LATEST')

def pull_kaui_war(version='LATEST')
  response = KauiArtifact.pull(logger,
                               KauiArtifact::KAUI_GROUP_ID,
                               KauiArtifact::KAUI_ARTIFACT_ID,
                               KauiArtifact::KAUI_PACKAGING,
                               KauiArtifact::KAUI_CLASSIFIER,
                               version,
                               options[:destination],
                               options[:sha1_file],
                               options[:force_download],
                               options[:verify_sha1],
                               options[:overrides],
                               options[:ssl_verify])
  say "Artifact has been retrieved and can be found at path: #{response[:file_path]}", :green
end