public void start(BundleContext context) throws Exception {
super.start(context);
this.bundleContext = context;
log(IStatus.INFO, "starting IvyDE plugin", null);
try {
console = new IvyConsole();
} catch (RuntimeException e) {
// Don't let the console bring down the CVS UI
log(IStatus.ERROR, "Errors occurred starting the Ivy console", e);
}
javaModel = JavaCore.create(ResourcesPlugin.getWorkspace().getRoot());