After adding 
                <dependency>
                    <groupId>commons-lang</groupId>
                    <artifactId>commons-lang</artifactId>
                    <version>2.3</version>
                </dependency>

to my pom.xml file I still got the IS_JAVA_1_6 error.

It turned out that a old common-lang-2.1.jar existed in my src, lib
directory so both jar's where getting picked up when running mvn jetty:run

By removing the older jar fixed my problem. Just adding this for reference.

I was in the middle of upgrading from a full-source appfuse2.0 M5 to
appfuse2.0 final when I came across this issue. 
   spring-basic 
   jdk 6

-Paddy

> mraible wrote:
> >
> > If you add an explicit dependency on commons-lang-2.1 to your pom.xml,
> > it should fix any transitive dependency issues. The problem is likely
> > because struts-menu (or another library) depends on a newer version of
> > commons-lang. You can run "mvn -X > mvn.log" to see the full
> > dependency list in mvn.log.
> >
> > Matt

-- 
View this message in context: 
http://www.nabble.com/Problems-executing-controller-test-after-running-mvn-appfuse%3Afull-source-tf4097676s2369.html#a13158811
Sent from the AppFuse - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to