java version "1.6.0-rc"
Java(TM) SE Runtime Environment (build 1.6.0-rc-b100)
Java HotSpot(TM) Client VM (build 1.6.0-rc-b100, mixed mode)
C:\workspace\wicket-threadtest>javac -source 1.5 -target 1.4
javac: source release 1.5 requires target release 1.5
that is the error that i get when i specify that source = 1.5
What you mean is -source 1.4 and -target 1.4
johan
On 10/9/06, Geoff hendrey <[EMAIL PROTECTED]> wrote:
http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javac.html#options
Cross compilation will only fail if you are using any new *language*-level features of JDK 1.5
However, as is my case, if all you are using is autoboxing, these are all taken care of by the compiler inserting casts, and it just saves you a few keystrokes. The compiler I am using is javac.
-geoff
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user
------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________ Wicket-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-user
