I tried compiling my webapplication with javac – source 1.5 – target 1.4 I end up with the error: javac: source release 1.5 requires target release 1.5

Since I’m using generics and other features; when I try compiling with –source 1.4 I end up with the errors:

(use -source 5 or higher to enable generics)
(use -source 5 or higher to enable for-each loops)
(use -source 5 or higher to enable annotations)

I need to deploy to a box with Java 1.4 installed; of which I have no control of, so upgrades are out of the question.

Suggestions?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

You should be able to do this with Retroweaver.

link|improve this answer
1  
Yes, I have several fairly large applications for which I use retroweaver. So far, it seems to work wonderfully. – Software Monk Feb 26 '10 at 6:19
Will try out thanks. – jonasespelita Mar 1 '10 at 3:20
Hey it works nicely. I've even modified Netbeans build scripts so that Retroweaver would be automatically weaving code. Awesome. – jonasespelita Sep 29 '10 at 9:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.