Map<String, String> inputParams = new HashMap<String, String>();
inputParams.put("file", file.getAbsolutePath());
ProcessUtils.extractConanParameters(processParams, inputParams, process);
try {
process.execute(processParams);
}
catch (ProcessExecutionException e) {
e.printStackTrace();
fail();
}