On 11/15/06, Martin Gainty <[EMAIL PROTECTED]> wrote:

I need to build Struts2 so when I go to Struts-2 folder and execute mvn (2nd 
generation maven against pom.xml)
(I modified pom.xml to accomodate existing jars)

How?

so when I execute maven in folder where pom.xml is located
struts-2.0.0-SNAPSHOT/src>mvn
struts-2.0.0-SNAPSHOT\src\core\src\main\java\org\apache\struts2\dispatcher\StrutsRequestWrapper.java:[74,79]
 incompatible types
found   : com.opensymphony.xwork2.util.ValueStack
required: com.opensymphony.xwork2.util.OgnlValueStack

My guess is that you're building against the wrong version of XWork.
IIRC, there was no tag for the XWork version that shipped with Struts
2.0.0.

This was fixed in the Struts 2.0.1 build, which depends on the
2.0-beta-1 version of XWork.

For Struts 2.0.0, the dependency is on xwork-core:2.0-SNAPSHOT which
means if you build it now, Maven will pull down the very latest code.
And that's unlikely to work since there have been so many changes.

If you really need to build Struts 2.0.0, you'll probably want to take
the XWork jar that shipped with it, and install it into your local
repository under some other name, then change the Struts pom.xml to
use that version.

--
Wendy

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

Reply via email to