StringBuilder builder = new StringBuilder(RestAPI.LIBRARY_GET_URL);
String url = builder.append(groupId).append("/").append(artifactId).append("/").append(version).toString();
try {
DownloadUtils.downloadFile(url, location.getPath(), location.getName(), md5, listener);
} catch (IOException e) {
throw new DownloadException(e);
}
}