[ http://jira.codehaus.org/browse/MXMLBEANS-23?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Corridor Software Developer updated MXMLBEANS-23: ------------------------------------------------- Assignee: Corridor Software Developer > XmlBeans plugin is not compatible with Clover plugin > ---------------------------------------------------- > > Key: MXMLBEANS-23 > URL: http://jira.codehaus.org/browse/MXMLBEANS-23 > Project: Maven 2.x Xmlbeans Plugin > Issue Type: Bug > Affects Versions: 2.0.1 > Reporter: Jason Dillon > Assignee: Corridor Software Developer > Priority: Critical > > By default the xmlbeans plugin generates bits to > target/classes/schemaorg_apache_xmlbeans... > But clover recompiles everything and needs them to be in > target/clover/classes... which means that when using xmlbeans you can not use > clover or you must add additional antrun plugins to copy these files. > Had to add this to get the site build to work with the xmlbeans plugin: > {code:xml} > <!-- > HACK: Copy the generated XmlBeans bits for clover > --> > <plugin> > <groupId>org.apache.maven.plugins</groupId> > <artifactId>maven-antrun-plugin</artifactId> > <executions> > <execution> > <phase>generate-resources</phase> > <goals> > <goal>run</goal> > </goals> > <configuration> > <tasks> > <mkdir dir="${pom.basedir}/target/clover/classes"/> > <copy todir="${pom.basedir}/target/clover/classes"> > <fileset dir="${pom.basedir}/target/classes"> > <include name="schemaorg_apache_xmlbeans/**"/> > </fileset> > </copy> > </tasks> > </configuration> > </execution> > </executions> > </plugin> > {code} -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list please visit: http://xircles.codehaus.org/manage_email