public void deployFileWithChecksumHeader() throws IOException, NoSuchAlgorithmException {
//System.setProperty("org.apache.commons.logging.Log", "org.apache.commons.logging.impl.SimpleLog");
//System.setProperty("org.apache.commons.logging.simplelog.showdatetime", "true");
//System.setProperty("org.apache.commons.logging.simplelog.log.org.apache.http", "debug");
ArtifactoryBuildInfoClient client =
new ArtifactoryBuildInfoClient(artifactoryUrl, "admin", "password", new NullLog());
File testFile = new File(
ArtifactoryBuildInfoClientTest.class.getResource("/org/jfrog/build/client/testfile.txt").getFile());
Map<String, String> checksums = FileChecksumCalculator.calculateChecksums(testFile, "sha1");
for (int i = 0; i < 10; i++) {