On Wed, May 6, 2009 at 12:11 PM, Rainer Hermanns <[email protected]> wrote: > Wes, > > yes, we now have multiple artifacts in XWork. The former xwork-VERSION.jar > file > has been renamed to xwork-core-VERSION.jar. > Maybe this simple change would fix the break, I'll have a look at this > later today. > So, I think changeing the struts pom.xml should solve the problem. > > later, > Rainer >
That doesn't seem like enough. I updated poms to use xwork-core and it seems like some of the classes that were shaded before are now gone. The only poms that point to xwork are the core and assembly pom. Here is what I'm getting when I try to compile by pointing to xwork-core - /home/wesw/data/struts/struts2/core/src/main/java/org/apache/struts2/components/Form.java:[39,36] package org.apache.commons.lang.xwork does not exist /home/wesw/data/struts/struts2/core/src/main/java/org/apache/struts2/components/DoubleSelect.java:[27,36] package org.apache.commons.lang.xwork does not exist /home/wesw/data/struts/struts2/core/src/main/java/org/apache/struts2/components/Text.java:[33,36] package org.apache.commons.lang.xwork does not exist /home/wesw/data/struts/struts2/core/src/main/java/org/apache/struts2/components/Property.java:[30,36] package org.apache.commons.lang.xwork does not exist /home/wesw/data/struts/struts2/core/src/main/java/org/apache/struts2/components/ServletUrlRenderer.java:[34,36] package org.apache.commons.lang.xwork does not exist /home/wesw/data/struts/struts2/core/src/main/java/org/apache/struts2/components/Anchor.java:[31,36] package org.apache.commons.lang.xwork does not exist /home/wesw/data/struts/struts2/core/src/main/java/org/apache/struts2/interceptor/validation/JSONValidationInterceptor.java:[34,36] package org.apache.commons.lang.xwork does not exist /home/wesw/data/struts/struts2/core/src/main/java/org/apache/struts2/components/Form.java:[164,17] cannot find symbol symbol : variable StringUtils location: class org.apache.struts2.components.Form /home/wesw/data/struts/struts2/core/src/main/java/org/apache/struts2/components/DoubleSelect.java:[65,11] cannot find symbol symbol : variable StringUtils location: class org.apache.struts2.components.DoubleSelect /home/wesw/data/struts/struts2/core/src/main/java/org/apache/struts2/components/Text.java:[154,12] cannot find symbol symbol : variable StringUtils location: class org.apache.struts2.components.Text /home/wesw/data/struts/struts2/core/src/main/java/org/apache/struts2/components/Property.java:[159,18] cannot find symbol symbol : variable StringEscapeUtils location: class org.apache.struts2.components.Property /home/wesw/data/struts/struts2/core/src/main/java/org/apache/struts2/components/Property.java:[162,18] cannot find symbol symbol : variable StringEscapeUtils location: class org.apache.struts2.components.Property /home/wesw/data/struts/struts2/core/src/main/java/org/apache/struts2/components/ServletUrlRenderer.java:[92,13] cannot find symbol symbol : variable StringUtils location: class org.apache.struts2.components.ServletUrlRenderer /home/wesw/data/struts/struts2/core/src/main/java/org/apache/struts2/components/ServletUrlRenderer.java:[98,16] cannot find symbol symbol : variable StringUtils location: class org.apache.struts2.components.ServletUrlRenderer /home/wesw/data/struts/struts2/core/src/main/java/org/apache/struts2/components/Anchor.java:[109,16] cannot find symbol symbol : variable StringUtils location: class org.apache.struts2.components.Anchor /home/wesw/data/struts/struts2/core/src/main/java/org/apache/struts2/interceptor/validation/JSONValidationInterceptor.java:[179,22] cannot find symbol symbol : variable StringEscapeUtils location: class org.apache.struts2.interceptor.validation.JSONValidationInterceptor -- Wes Wannemacher Author - Struts 2 In Practice Includes coverage of Struts 2.1, Spring, JPA, JQuery, Sitemesh and more http://www.manning.com/wannemacher --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
