Lombok not working in eclipse mars - eclipse

I have eclipse version: "Mars Release (4.5.0)"
I have downloaded latest lombok jar from: https://projectlombok.org/download.html
I executed:
java -jar lombok.jar install $eclipseDir
After this I can see lombok.jar in my eclipse directory and eclipse.ini.
Restarted eclipse with:
eclipse -clean
But still lombok is not working for me.

I had the same problem. What helped was:
Restart Eclipse
Select from top menu Project -> Clean...
Clean all projects that use Lombok
If it will not help, try again from point 1. (I know it sounds stupid but it worked on my PC on second try.)
Also, I'm using Lombok version 1.16.4 (and Eclipse Mars of course)
BTW: Make sure that you have lombok.jar in the eclipse directory.

I have solved the same problem, here are my steps
check eclipse.ini, make sure lombok is properly installed
restart eclipse
project->clean, clean your project
window->show view->problems, Ctrl+A to select ALL errors, right
click & delete
project->clean, clean your project again
I think that should work.

I was facing the same issue in Eclipse Neon.2 and in STS 3.8.3 the solution was
Download the Lombok jar from
https://projectlombok.org/download.html
Execute
java -jar lombok.jar
Configure the Eclipse or STS and install.
It will copy the lombok.jar under Eclipse dir and add the line -javaagent:../Eclipse/lombok.jar in eclipse.ini or STS.ini
Make sure in About eclipse -> Installation Details -> Configuration
-javaagent:../Eclipse/lombok.jar line exists
If it's a git project then delete the project from workspace and import the project again. or else export the project and then import it again
Hope it helps someone!

On mac os this is because the location of eclipse.ini has changed. Kepler and Luna used Eclipse.app/Contents/MacOS/eclipse.ini. Mars uses Eclipse.app/Contents/Eclipse/eclipse.ini.
It looks like this has broken Lombok's Eclipse auto-detection as well.

eclipse.ini edit and project clean
-vmargs
-javaagent:lombok.jar

run the jar- I just double clicked on it;
Add the following to eclipse .ini, and have lombok.jar in the eclipse folder
-vmargs
-javaagent:lombok.jar
Windows 7 + eclipse mars

Have the same problem with Ubuntu 14.04, when I jump into eclipse directory and run the executable there, it is ok, however when the launcher icon is used, the entire eclipse.ini is being ignored for some reason.

Had similar problem with Neon. The problem was that the version of lombok.jar installed in the Eclipse directory was not the same as the version specified in pom.xml.

Related

Configuring lombok for gradle project in eclipse Luna/Mars

I have followed how to configure lombok in eclipse luna but it is not working for me for a given gradle project, against the latest version of lombok, having tried both eclipse Luna and Mars.
I have installed lombok to my eclipse through java -jar lombok.jar, providing it the path to my eclipse installation in the UI dialog that it opens up.
I have also added the jar to the project, as seen below.
I added the following argument to the java command in my desktop launch script (this is Ubuntu)
-vmargs -javaagent:lombok.jar
(relative and absolute paths worked the same).
The project is a gradle project, and it builds perfectly fine outside of eclipse.
What might be missing, or, how would I further troubleshoot it?

FindBugs Does Not Show Up in Project Properties

I had just installed FindBugs plugin for Eclipse. My Eclipse is Juno. I am using Windows 7.
It shows up at Help -> about Eclipse -> Installed Software as FindBugs Feature
However it does not exist on Project Properties.
I had tried to run eclipse as Administrator, installing from either marketplace or manual.
But no luck.
I use a copied Eclipse (without installation) at Desktop.
Any thought on how to shows the FindBugs in project properties?
Thanks
Just in case you haven't figured out yet, and so it might help others like me.
If you are installing a version of Eclipse FindBugs 3.0 or greater, then it's only supported on Java 7.
Update your JDK to 7.0 and you will see Findbugs show up as a part of your properties. Wasted a lot of hours on this one.
I had same problem. I am using Kepler + windows 7 + jdk1.5. This got resolved with jdk update from 1.5 to 1.7.
May be it has dependency on 1.7 but there was no error message and like you said it was not visible in preference.
Check out this tutorial:
http://www.vogella.com/tutorials/Findbugs/article.html
I am using Eclipse Kepler in Windows 7, but it shouldn't make any difference.
There is also a FindBugs entry in context menu (right click project, under Import and Export options, in my case)
Edit your eclipse.ini file (you can find it in your eclipse installation folder) and change or add (if it does not exist) the -vm parameter value to a Java 7 JDK. More info here.
All other answers (installing latest Java, Eclipse update, adding '-vm ...' to the .ini-file did not work for me.
I solved it by clicking "Window"->"Perspective"->"Open Perspective"->"Other..."->"FindBugs".
Then switch back to 'Java'-perspective. Now the menu is available when you right-click the project.

Installation of FindBugs plugin with Eclipse IDE for Java EE Developers

I'm struggling to get the Eclipse FindBugs plugin to work and am sure there's a schoolboy error being made somewhere.
I extracted the file findbugs-2.0.2-rc2.zip to a local folder C:\Program Files\findbugs-2.0.2-rc2 and running findbugs.bat, FindBugs works fine running it over a local Java (Eclipse) project.
I added the FindBugs update site, it found "FindBugs Feature, 2.0.1.20120712" and installed it. Restarting, right-clicking on an open Java Project doesn't display the "FindBugs" option (that this video shows).
I looked in Window > Preferences to try to find a way to inform the plugin of the local FindBugs installation (in Program Files), but couldn't find anything.
Uninstalling "FindBug Feature", I tried extracting the FindBugs Eclipse plugin zip file into Eclipse's plugins folder, but after a restart, saw no difference.
Help > About Eclipse > Installation Details > Installed Software lists "FindBugs Feature 2.0.1.20120712".
Can anyone please offer a pointer on where I'm going wrong here? Thanks!
Windows 7, Eclipse IDE for Java EE Developers Juno SR1, JDK 1.7.0_09, FindBugs 2.0.2-rc2
As suggested above, problem is likely caused by not having appropriate write access to the C:\Program Files\Eclipse\plugins folder.
Solution:
Close Eclipse. Restart Eclipse as Administrator (right click - Run as Administrator). Reinstall plugin. Restart Eclipse.
It looks like the Findbugs plugin wasn't installed properly and/or disabled by Eclipse. There can be several causes.
Multiple versions of the same plugin. To make sure this isn't the case, remove all Findbugs versions (installed manually and via the marketplace), and reinstall one (preferably via the marketplace). Watch for any warnings during installation.
There is a (dependency) conflict with another plugin. However, if this is the case I think Eclipse will warn in the log which other plugin is the cause of the conflict.
Rights problem. Make sure you have write permissions in the main Eclipse folder and all it's child folders.
I remember reading somewhere that installing Eclipse under the C:\Program Files\ in Windows can also be causing problems. Try moving Eclipse to a different folder, e.g. C:\Eclipse
Hi I also faced the similar problem but from my own experience i can suggest you the solution :-
Plz ensure that you are using eclipse version 3.6 or higher. findbugs 2.0 is not compatible with Eclipse 3.5(Eclipse Galileo).
1) Plz extract the findbugs zip file into eclipse folder(wher your eclipse is installed). This will automatically move findbug plugins into eclipse plugins folder. Restart the eclipse and you will find findbugs option on right clicking on project.
2) if 1 step does not work plz remove all the findbug jars for the eclipse plugins folder and place the complete folder into the eclipse dropins folder. Restart the eclipse and you will see the difference.
You can follow these step's to make findbugs work in your eclipse.
1.Install FireBug plugin from marketplace.
Help->Eclipse Marketplace ->then search for FindBugs
2.Configure FindBug for your project
using Maven Without Maven
This worked fine for me using eclipse juno.

Problem installing Maven plugin (m2eclipse) in Eclipse (Galileo)

I have Eclipse Galileo (for Java EE Developers) installed, and I'm now trying to get the m2eclipse Maven plugin installed as well.
I follow the basic steps described at http://m2eclipse.sonatype.org/installing-m2eclipse.html, and it seems to be installing just fine. However, after restarting Eclipse after the install it doesn't seem to be anywhere. I should for instance have the ability to create a new maven project, but when the new-project wizard opens, there is no folder for Maven (I also cannot find any reference to it in the context menus of the existing projects I have).
When I click at Help > About Eclipse > Installation Details, I find "Maven Integration for Eclipse (Required)" in the tab "Installed Software", yet another thing pointing towards a successful installation (but I can't find it under the "Plug-ins" tab, should it be there too?)...
I feel like I'm just missing something very obvious, but right now I just don't see it...
I managed to find the answer to this myself:
I had put the Eclipse installation folder under c:\Program Files\, but when I moved it directly under c:\ instead, the plug-in installation worked just as it should. I assume that is because Eclipse wasn't allowed to write to its own installation folder (but I didn't get the usual question from Windows that something was trying to access Program Files either...).
In one way I feel like I should be a bit ashamed that I didn't think of this before. On the other hand though, there could have been some reasonable error message stating that something failed during the plug-in installation...
Well, I hope this at least helps somebody else as well :)
Did you check the m2eclipse installation requirements?
In particular, you need WTP.
"Maven integration for Eclipse" (core feature) and optional "Maven POM Editor" feature depend on the "Eclipse XML Editors and Tools" feature from WST
"Maven integration for WTP" feature provides Maven project configuration for WTP
Did you have a previous version of m2eclipse installed? Did you uninstall it before to install the latest version? Just in case, does the following note applies to you?
Note about 0.9.8 Workspace Incompatibility: If you are using
m2eclipse 0.10.0 with a workspace that
contains projects created under
m2eclipse 0.9.8, you must remove the
workspaceState.ser file. The
workspaceState.ser file is located
within the workspace directory in
$workspacedir/.metadata/.plugins/org.maven.ide.eclipse/workspaceState.ser.
If you remove this file, m2eclipse
0.10.0 will regenerate it as needed.
In my case, uninstalling the previous m2eclipse version didn't work and I had to start with a fresh Eclipse install (maybe try this also).
Regarding the plugin tab, this is what I have (to confirm that you should definitely find something):
alt text http://www.imagebanana.com/img/84h6mw8z/screenshot_008.png
Note that I also installed some extras from m2eclipse Extras Update Site: http://m2eclipse.sonatype.org/sites/m2e-extras
I was able to solve this problem by going into Program Files, right click on the eclipse.exe file and select "Run as administrator". When I restarted Eclipse it said I had no plugins installs so I reinstalled and my problems were solved.
PROBLEM SOLVED
I had this same problem and I used the following software site:
["M2Eclipse - http://download.eclipse.org/technology/m2e/releases/1.0] (without square brackets) to download the M2Eclipse plugin in Eclipse 3.7.0 (Indigo). For more information refer this.
To solve the problem of 'not getting Maven plugin running in eclipse' , it can be solved by altering admin rights to the .m2 folder . Right click on .m2 folder and go to network sharing. give all rights to all users. Restart eclipse and maven options will start to appear in Eclipse.

Eclipse will not start after uninstalling Java and reinstalling to a new location

I reinstalled the JDK tonight because of the embedded space in Program File... and now Eclipse blows up immediately when starting. Is there a config file that needs updating? I tried eclipse -clean with nu luck.
while eclipse starting it requires java.exe and javaw.exe. so when you installed it at other places. you should specify its location in PATH variable so that it can be used to locate your JVM.
EDIT: and of course remove the old entry.
I know this question has already been solved but i want to share a small detail. if you are using -vm option in eclipse.ini, make sure that it is written before -vmargs option.
in my case below configuration didn't worked
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx512m
-vm
C:\ibm_jdk_6\bin\javaw.exe
but below configuration worked
-vm
C:\ibm_jdk_6\bin\javaw.exe
-vmargs
What OS are you using? You need to let eclipse know where your jdk lives. On windows at least it is in the exclipse.ini, change it to put to your knew jdk and it will work
for example on windows you will need something like this in your eclipse.ini
-vm
C:\jdk1.6.0_02\jre\bin\java
You can find your eclipse.ini in the root directory of your eclipse installation (ie: where eclipse.exe is)
You must have fixed this problem by now but I don't see anything in this thread to indicate that.
I just had the same problem. I updated JDK. The next time I tried to start Eclipse it wouldn't. I fixed the problem by removing all older versions of java and setting the new version in my PATH system environment variable. Actually, I also reinstalled my eclipse but I don't think that had anything to do with the solution. By the way, I'm using Eclipse Galileo (Build id: 20090621-0832) and jdk1.6.0_021.
did you eclipse.ini file in the eclipse directory point to a specific -vm? You may need to change it in your eclipse directory.
You can also get this error if you have a 64-bit jre and 32-bit eclipse, so just make sure your jre and eclipse build match up!
Use the eclipse clean command; it will make clean and elipse will start
GOTO_Eclipse_Directory > eclipse -clean
Refer below url : http://www.coderanch.com/t/454501/vc/eclipse-exe-not-working
Pre append the string in system variable PATH: "C:\Program Files\Java\jdk1.6.0_22\jre\bin;"
Then every thing will work fine.
For me Eclipse was not starting because I had two versions of Java 5 & Java 6 installed. I uninstalled 6, and then it started working. So better to see if uninstallation of one version solves the problem.
I got the same problem When i Installed the java update 38....
resolved by uninstalling the update.
Eclipse was able to locate the JRE however it failed to launch because the eclipse that I had downloaded was 32 bit and my jdk version was 64bit. I uninstalled 64bit jdk and installed 32bit. Eclipse launched successfully
You don't have to uninstall anything. Just go to the eclipse folder in the eclipse configuration setting and change the class path to C:\Program Files\Java\jdk-9.0.1\bin.