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 the maven-xmlbeans-plugin. I'm using version 2.3.1 of the plugin which from what I can tell by inspecting the pom of the plugin uses XMLBeans 2.3.0 as well. The generated classes are different though in that my ant version generates methods like getFooList() along with getFooArray() which is deprecated. The maven version only generates a non-deprecated getFooArray() with no getFooList() to be found. I've tried digging through the code for the ant task to see if it passes some property that would be responsible for this that the maven version doesn't, but I have had no luck. Google is also failing me. Is there some simple setting I need for the SchemaCompiler to generate getXXXList() methods? Thank you much for any help.
-Jim

