Map<String, String> variables = new HashMap<String, String>();
variables.put("basePackageName", getPackageName());
variables.put("moduleName", getModuleName());
{
// add EntryPoint variables
EntryPointPre21Configuration entryPointConfiguration = getEntryPointConfiguration();
if (entryPointConfiguration != null) {
variables.putAll(entryPointConfiguration.getVariables());
}
}
return variables;
}