Generated class differences between ant task maven plugin

2008-12-02 Thread Jim Johnson
Hi. I'm at a bit of a loss for the problem I'm currently facing. I currently have a project that uses the xmlbeans ant task to generate classes based on a supplied XSD. In my ant version I use XMLBeans 2.3.0. I'm in the process of converting this project over the maven, and as such I'm using

Re: Generated class differences between ant task maven plugin

2008-12-02 Thread Jacob Danner
As far as I remember the getFooList() methods are generated for generic accessors. This in done via the scomp tool with: -javasource [version] - generate java source compatible for a Java version ( 1.4 or 1.5) It looks like one of your tools' usages is settings this value while the other is

Re: Generated class differences between ant task maven plugin

2008-12-02 Thread Jim Johnson
Thank you Jacob, that was exactly it. Specifying a javaSource of 1.5 for the maven plugin caused the correct getter to appear. -Jim On Tue, Dec 2, 2008 at 4:10 PM, Jacob Danner [EMAIL PROTECTED] wrote: As far as I remember the getFooList() methods are generated for generic accessors. This in