I've been migrating some old ant scripts across to using maven2, but I've come unstuck with the xmlbeans plugin. The ant scripts use the parameter javasource="1.5" but I've been unable to generate sources that have the get*List() methods as well as the get*Array() methods.

Here's my plugin declaration:

<plugin>
   <groupId>org.codehaus.mojo</groupId>
   <artifactId>xmlbeans-maven-plugin</artifactId>
   <executions>
       <execution>
           <goals>
               <goal>xmlbeans</goal>
           </goals>
       </execution>
   </executions>
   <configuration>
       <javasource>1.5</javasource>
   </configuration>
</plugin>

My JAVA_HOME is Sun Java 6 and PATH points to java6.

Any thoughts?

-- Kim


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

   http://xircles.codehaus.org/manage_email


Reply via email to