Can anybody tell me the jsr14 target option of javac will be still available with JDK7/8?
jsr14
javac
Say,
$ javac -source 1.5 -target jsr1
The latest OpenJDK source bundle (openjdk-7-ea-src-b130-18_feb_2011.zip) still contains the flag in the source (langtools/src/share/classes/com/sun/tools/javac/jvm/Target.java), but it has never been supported, so relying on it is a bad idea.
openjdk-7-ea-src-b130-18_feb_2011.zip
langtools/src/share/classes/com/sun/tools/javac/jvm/Target.java
Why do you need it?