<?xml version="1.0"?><project>
  <parent>
    <artifactId>xfire-parent</artifactId>
    <groupId>org.codehaus.xfire</groupId>
    <version>1.2.4</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>xfire-xmlbeans</artifactId>
  <name>XFire XMLBeans Support</name>
  <version>1.2.4</version>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <execution>
            <phase>generate-test-sources</phase>
            <goals>
              <goal>run</goal>
            </goals>
            <configuration>
              <tasks>
                <taskdef classname="org.apache.xmlbeans.impl.tool.XMLBean" classpathref="maven.test.classpath" name="xmlbean"></taskdef>
                <mkdir dir="${basedir}/target/xmlbeans-test-classes"></mkdir>
                <xmlbean failonerror="true" classgendir="${basedir}/target/xmlbeans-test-classes" classpathref="maven.test.classpath">
                  <fileset includes="**/*.xsd" dir="${basedir}/src/test-schemas"></fileset>
                </xmlbean>
                <copy todir="${basedir}/target/test-classes">
                  <fileset dir="${basedir}/target/xmlbeans-test-classes"></fileset>
                </copy>
              </tasks>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.codehaus.xfire</groupId>
      <artifactId>xfire-aegis</artifactId>
    </dependency>
    <dependency>
      <groupId>xmlbeans</groupId>
      <artifactId>xbean</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>xmlbeans-jsr173-api</artifactId>
          <groupId>xmlbeans</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
  <distributionManagement>
    <status>deployed</status>
  </distributionManagement>
</project>