Does commons-configuration v1.6 work with JREv1.5? [Commons]

2009-08-12 Thread Andrew Hughes
Hi, simple question I know... but, I'm lost!!! My JavaFX project won't recognize *org.apache.commons.configuration.**. JavaFX v1.2's SDK seems to have inherent problems with Java6, because the SDK is released with rt15.jar (Java 1.5 runtime)! If the answer is yes because configuration 1.6 has a

Re: Does commons-configuration v1.6 work with JREv1.5? [Commons]

2009-08-12 Thread James Carman
It's not compiled with target=1.6. If you look at the manifest, it uses the same target as commons-parent-11, 1.3: X-Compile-Source-JDK: 1.3 X-Compile-Target-JDK: 1.3 It was compiled with a 1.4 Sun JDK: Created-By: 1.4.2_18 (Sun Microsystems Inc.) Build-Jdk: 1.4.2_18 So, it should be 1.5

Re: Does commons-configuration v1.6 work with JREv1.5? [Commons]

2009-08-12 Thread Andrew Hughes
Gotcha!!! Thank You. JavaFX refuses to read the jar All other common's jars work just fine :'( On Thu, Aug 13, 2009 at 10:36 AM, James Carman ja...@carmanconsulting.comwrote: It's not compiled with target=1.6. If you look at the manifest, it uses the same target as commons-parent-11, 1.3: