eclipse-plugin

what is the hibernate tools plugin for eclipse update site url?

Or perhaps this is a manual install only deal. ...

Running External Apps on save in Eclipse

Since we cannot setup Eclipse's RSE to use at the tool for remote editing, I have installed Unison. But how can I get Eclipse to automatically run unison on every file save? Is there an eclipse plugin available for this? TIA ...

Is there a good JSP editor for Eclipse?

I need a nice JSP editor plugin for Eclipse. What are my choices? ...

How to run Eclipse launch configurations programmatically?

I'm finding it difficult to phrase this question well, as there are quite a few generic terms (run, configuration, launch, etc.). Here goes: You can save run configurations in a .launch file. (in the Run Configuration Dialog, under the Common tab, Save as a shared file. We check these in to SVN. The developers can pass them around, and...

Is the Open Source Jalopy Eclipse plugin compatible with Ganymede?

After much searching, I found the download for the eclipse version of jalopy. Is this compatible with Eclipse 3.4? It's dated 2006. I've copied the extracted folder to my plugins directory and run eclipse -clean, but I can't find anything matching 'jalopy' in preferences. If it's not compatible, are there any (free) alternatives? ...

How do I set up a test project for a Eclipse plugin project

I'm working on a eclipse plug-in and I've tried to create another test project seperate from the plug-in. The reason I do this is to not let the plug-in depend on jUnit when it is exported. However, I can't access the Eclipse Plug-in API when I do the testing. Whenever I try to add Plug-in dependencies the import list to that is empty. ...

Eclipse 3.4 TextViewer

I am creating a plugin for Eclipse 3.4. I created a plug-in development project using the application with a view. Now I am trying to create a TextViewer the documentation says that it is located in org.eclipse.jface.text.TextViewer. But, this whole package is missing and eclipse cannot locate TextViewer class to import. I want to kn...

WebLogic plugin within Eclipse

I am trying to start WebLogic within Eclipse When it starts it complains like this. Unable to load performance pack. Using Java I/O instead. Please ensure that wlntio.dll is in: 'C:\bea81\jdk142_04\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\bea81\jdk142_04\jre\bin;C:\Program Files\Java\jre1.6.0\bin\client;C:\Program Files\Java\jre1.6.0\bi...

Deploying a newly developed Eclipse Plugin

I have written an Eclpise plugin (an Error Parser for the CDT), and it works just fine in the debugger version of eclipse. However I cannot for the life of me figure out how to install the plugin into eclipse. I can export the plugin as a jar file, and it seems to export without errors. I put the plugin jar file into eclipse\dropins a...

Eclipse RCP: Where should I keep my model objects and how do they talk to the views?

In Eclipse RCP way of doing things, where should I keep my model objects? And when they are loaded or changed, how should they talk to the views? I am attempting to port my existing application to Eclipse RCP. It could be viewed as an IDE-like application: I open a file, which contains links to source files. The source files are display...

JSEclipse Alternatives in Ganymede

I've been having a lot of problems with JSEclipse in Ganymede, but I haven't had much luck finding an alternative that's compatible with Ganymede (eclipse 3.4). All I'm really looking for is code-highlighting. Anyone have any good alternatives, or do I just need to suck it up and get on with it? ...

A good tutorial on building Eclipse plugins?

I'm trying to get started with my first Eclipse plugin, but can't seem to find a good tutorial on the subject that is newer than 2003, when Eclipse 2.1 was in style. Any pointers on finding a quality tutorial that is still relevant? ...

"Package LISP-UNIT is not loaded" error in Cusp Eclipse plug-in

I'm getting the following error in Eclipse using the Cusp plug-in: Package LISP-UNIT is not loaded How do I fix it? ...

Where can I find the Maven installation directory in Eclipse 3.4

I have installed m2eclipse plugin from http://m2eclipse.codehaus.org/. Now I want to use that as a standalone build tool but I am unable to find the installation directory. Can anyone help me in this? ...

Does anyone know of an Eclipse(WSAD/RAD) plugin for a Maven2 POM classpath container

I am trying to find a simple single purpose plugin that will maintain the Eclipse classpath based on the Maven2 POM dependencies. I know about m2eclipse and q4e. Unfortunately, I'm currently using RAD (Rational Application Developer - IBM's commercial version of Eclipse) and it is not fully compatible with m2eclipse, and I can't use q4e...

Get the absolute path of the currently edited file in Eclipse

I'd like to write a plugin that does something with the currently edited file in Eclipse. But I'm not sure how to properly get the file's full path. This is what I do now: IFile file = (IFile) window.getActivePage().getActiveEditor.getEditorInput(). getAdapter(IFile.class); Now I have an IFile object, and I can retrieve it's path...

Launching a URL from an Eclipse plugin

I'd like to have my Eclipse plugin cause a URL to be opened by the users' default browser. This seems like pretty standard behavior, but I haven't been able to find any docs on how to do this. Can anyone help? ...

What is the best Eclipse GWT plugin?

We're going to investigate GWT for our project. When searching for an Eclipse GWT plugin I got many. Google Eclipse Plugin GWT Designer Cypal studio None, run GWT in hosted mode GWT-Tooling Other? In your view, what is the best GWT plugin for Eclipse and why? [27 Nov: Editied to reflect the answers below...] ...

Which is the best Maven Eclipse plugin ?

There is two available Eclipse plugins for Maven : Eclipse IAM (old name is Q4E) m2eclipse m2eclipse seems to be the oldest but the more robust. Is there any key differences between the two ? Which one should be chosen for a project starting today and why ? ...

Is it possible for the findbugs plugin for eclipse to report as errors instead of warnings?

I am working on a very large legacy code base. We are looking to introduce findbugs into the development practice. I intend to have findbugs run whenever the code is built by eclipse. I would like to be able to make the findbugs warnings appear as errors in the code much in this way you can change the severity level in eclipse Is it ...