Thanks a lot for the help. =) It was exactly my problem. java was pointing to 1.4 and javac was pointing to 5.
Allan Valeriano On 11/14/06, Wayne Fay <[EMAIL PROTECTED]> wrote:
Unsupported major.minor version indicates you're trying to run a newer-compiled Java class in an older JRE. In this case, seems like you've compiled classes with JRE 5 and are attempting to execute them (testing w/Surefire?) with JRE 3 or 4. Check your PATH... I'd guess you've got a JRE 3 or 4 in your PATH somewhere and its being used instead of JRE 5. Wayne On 11/14/06, Allan Valeriano <[EMAIL PROTECTED]> wrote: > I found out that my project' parent have on its pom.xml the configuration to > compile with jre5 already. > So I was thinking the problem I'm having is not being caused by the jre and > so by another mystical thing. > Here goes the error: > > [INFO] > > > ---------------------------------------------------------------------------- > > [INFO] Building scap-integration-core > > [INFO] task-segment: [install] > > [INFO] > > > ---------------------------------------------------------------------------- > > [INFO] [resources:resources] > > [INFO] Using default encoding to copy filtered resources. > > [INFO] [compiler:compile] > > [INFO] Nothing to compile - all classes are up to date > > [INFO] [resources:testResources] > > [INFO] Using default encoding to copy filtered resources. > > [INFO] [compiler:testCompile] > > [INFO] Nothing to compile - all classes are up to date > > [INFO] [surefire:test] > > [INFO] Surefire report directory: > > > /home/valeriano/.eclipse/scap-integration-branch/scap-integration-core/target/surefire-reports > > org.apache.maven.surefire.booter.SurefireExecutionException: > > com/longadata/scapintegration/core/EnotariusSubjectHandlerTest > (Unsupported > > major.minor version 49.0); nested exception is > > java.lang.UnsupportedClassVersionError: > > com/longadata/scapintegration/core/EnotariusSubjectHandlerTest > (Unsupported > > major.minor version 49.0) > > java.lang.UnsupportedClassVersionError: > > com/longadata/scapintegration/core/EnotariusSubjectHandlerTest > (Unsupported > > major.minor version 49.0) > > at java.lang.ClassLoader.defineClass0(Native Method) > > at java.lang.ClassLoader.defineClass(ClassLoader.java:539) > > at java.security.SecureClassLoader.defineClass( > > SecureClassLoader.java:123) > > at java.net.URLClassLoader.defineClass(URLClassLoader.java :251) > > at java.net.URLClassLoader.access$100(URLClassLoader.java:55) > > at java.net.URLClassLoader$1.run(URLClassLoader.java:194) > > at java.security.AccessController.doPrivileged(Native Method) > > at java.net.URLClassLoader.findClass(URLClassLoader.java:187) > > at java.lang.ClassLoader.loadClass(ClassLoader.java:289) > > at java.lang.ClassLoader.loadClass(ClassLoader.java:235) > > at org.apache.maven.surefire.booter.IsolatedClassLoader.loadClass( > > IsolatedClassLoader.java:100) > > at > > org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.locateTestSets( > > AbstractDirectoryTestSuite.java:84) > > at org.apache.maven.surefire.Surefire.createSuiteFromDefinition( > > Surefire.java:147) > > at org.apache.maven.surefire.Surefire.run(Surefire.java:108) > > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > > at sun.reflect.NativeMethodAccessorImpl.invoke( > > NativeMethodAccessorImpl.java:39) > > at sun.reflect.DelegatingMethodAccessorImpl.invoke( > > DelegatingMethodAccessorImpl.java:25) > > at java.lang.reflect.Method.invoke(Method.java:324) > > at > > org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess( > > SurefireBooter.java:225) > > at org.apache.maven.surefire.booter.SurefireBooter.main( > > SurefireBooter.java:747) > > > > > Anybody has any idea about what might be causing this error? > > Thanks in advance > Allan Valeriano > > On 11/13/06, Wayne Fay <[EMAIL PROTECTED]> wrote: > > > > Then I have no idea why its not working for Aaron... ;-) > > > > Wayne > > > > On 11/13/06, Arnaud Bailly <[EMAIL PROTECTED]> wrote: > > > "Wayne Fay" <[EMAIL PROTECTED]> writes: > > > > > > > You can put it in the parent "pom" project with complete configuration > > > > etc, but then you also need to include a reference to the > > > > compiler-plugin in the build section in each of your modules. > > > > > > > Hello, > > > > > > I tried without adding the reference to compiler plugin in <build> > > > section of child project and it works ok. > > > > > > Regards, > > > -- > > > OQube < software engineering \ génie logiciel > > > > Arnaud Bailly, Dr. > > > \web> http://www.oqube.com > > > > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
