aboutsummaryrefslogtreecommitdiff
path: root/src/installer/lombok
AgeCommit message (Collapse)Author
2010-07-22Updated copyright statements and version release name.Reinier Zwitserloot
2010-07-19Added (and left intentionally undocumented) an option to force the installer ↵Reinier Zwitserloot
to use an absolute path for location of lombok.jar: java -Dlombok.installer.fullpath -jar lombok.jar There have been some reports that under helios the relative path no longer cuts it, but all reports come from tweaked installs. In case folks run into this, we can now give them a quick solution. See: http://groups.google.com/group/project-lombok/browse_thread/thread/2071edd5495a8cd7
2010-02-10cmdreader no longer needs @ParameterizedReinier Zwitserloot
2009-12-30Fix for the installer crashing with NPE on line 589.Reinier Zwitserloot
2009-12-12installer fixes:Reinier Zwitserloot
- when manually specifying paths via the command line installer, each location would get installed/uninstalled twice, and errors would occur if you provided paths with no known IDEs - fixed a problematic earlier checkin regarding STSFinder; now STSFinder looks in all the appropriate spots.
2009-12-08Added support for SpringSource Tool Suite, which, given that its based on ↵Reinier Zwitserloot
eclipse, was just a matter of updating the installer. Any future tools that are based on eclipse (and eclipse's JDT) should be very easy to add to the installer now.
2009-12-04Fix for issue #76: Can't select directories in the 'specify location...' ↵Reinier Zwitserloot
dialog of the installer. This was by design before (you pick the executable), but issue #76 convinced me the past design was stupid.
2009-12-03Fixes to git auto finding on windows and unix. It seems to work fine now on ↵Reinier Zwitserloot
all 3 platforms!
2009-12-02Fix for installation - now uses quotes instead of backslash-space, as ↵Reinier Zwitserloot
backslash-space doesn't work in windows.
2009-12-02Massive update to how the installer works, and added netbeans to the installer.Reinier Zwitserloot
2009-11-28Redesigned how lombok runs as a command line app, added the ability to print ↵Reinier Zwitserloot
information about and generate lombok-runtime.jar, fleshed out the 'install' and 'uninstall' command line tools.
2009-11-27Delombok now auto-discovers and uses tools.jar from your java installation.Reinier Zwitserloot
2009-11-27SPI-ified the 'app' concept, which lets us create little apps inside ↵Reinier Zwitserloot
lombok.jar proper. Currently used only by 'delombok'.
2009-11-27Solved the problem in the two-phase compile (some of lombok is JVM1.5, other ↵Reinier Zwitserloot
bits are JVM1.6) being interdependent and causing implicit compilation warnings. Also added source="1.x" to all ant file javac targets, as apparently this needs to be there when compiling with JDK7.
2009-11-27Delombok now works from the command line as:Reinier Zwitserloot
java -jar lombok.jar delombok (args)
2009-11-25Refactored the source folders.Reinier Zwitserloot