int index = contentURLString.indexOf(":/");
URL contentURL = new URL("file" + contentURLString.substring(index));
// distribute the resource deployment.
DeploymentManager manager = super.getDeploymentManager();
DeploymentProgress progress = manager.distribute(resourceName, contentURL, true);
progress.addProgressListener(this.listener);
progress.run();
assertDeployed(progress);