Compatibility
many users seem to have problems with forge because of features added from Java 1.6.
you can configure your eclipse to use a 1.5 compatible execution environment by going to the project properties (context menu, at the bottom). all in all, that means that the compiler will complain a bit more.
This unfortunately doesn't prevent you from newer libraries. the really clean way would be to use the real 1.5 JDK, but Sun requires you to enter information to download it, because it's at the end of the lifecycle. so the easiest we can do is just watch out in the javadocs for @since 1.6 and not use it.
you can configure your eclipse to use a 1.5 compatible execution environment by going to the project properties (context menu, at the bottom). all in all, that means that the compiler will complain a bit more.
This unfortunately doesn't prevent you from newer libraries. the really clean way would be to use the real 1.5 JDK, but Sun requires you to enter information to download it, because it's at the end of the lifecycle. so the easiest we can do is just watch out in the javadocs for @since 1.6 and not use it.
