module KPM::Tasks

def pull_kb_server_war(version='LATEST')

def pull_kb_server_war(version='LATEST')
  response = KillbillServerArtifact.pull(logger,
                                         KillbillServerArtifact::KILLBILL_GROUP_ID,
                                         KillbillServerArtifact::KILLBILL_ARTIFACT_ID,
                                         KillbillServerArtifact::KILLBILL_PACKAGING,
                                         KillbillServerArtifact::KILLBILL_CLASSIFIER,
                                         version,
                                         options[:destination],
                                         nil,
                                         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