Ludovic Garcia created CXF-5921:
-----------------------------------
Summary: Using cxf-codegen-plugin and cxf-xjc-plugin along with
commons-lang ToStringBuilder does not work properly with commons-lang3
Key: CXF-5921
URL: https://issues.apache.org/jira/browse/CXF-5921
Project: CXF
Issue Type: Bug
Components: Build system
Affects Versions: 3.0.1
Environment: Windows 7, maven 3.2.2, java 1.7.0_65 X64
Reporter: Ludovic Garcia
Priority: Minor
Hi,
I am using the maven plugin cxf-codegen-plugin in order to generate java
sources from wsdl.
I tried to migrate from commons-lang 2.4 to commons-lang3 3.1, and I also
raplaced the value for option -Xts:style: from :
- org.apache.commons.lang.builder.ToStringStyle.SHORT_PREFIX_STYLE
To :
- org.apache.commons.lang3.builder.ToStringStyle.SHORT_PREFIX_STYLE
But a small issue remained in the generated classes, indeed the import for the
class ToStringStyle successfully changed to the appropriate package, but for
the import of the class ToStringBuilder, the import is still the same :
org.apache.commons.lang.builder.ToStringBuilder
instead of :
org.apache.commons.lang3.builder.ToStringBuilder
Therefor resulting in a compilation failure
--
This message was sent by Atlassian JIRA
(v6.2#6252)