<?xml version="1.0" encoding="ISO-8859-1"?><project>
  <parent>
    <artifactId>modules</artifactId>
    <groupId>org.apache.geronimo.modules</groupId>
    <version>1.2-beta</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>geronimo-service-builder</artifactId>
  <name>Geronimo :: Service :: Builder</name>
  <version>1.2-beta</version>
  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>xmlbeans-maven-plugin</artifactId>
        <configuration>
          <sourceSchemas>geronimo-module-1.2.xsd,geronimo-javabean-xmlattribute-1.0.xsd</sourceSchemas>
        </configuration>
      </plugin>
      <plugin>
        <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"></mkdir>
                <copy todir="${pom.basedir}/target/clover/classes">
                  <fileset dir="${pom.basedir}/target/classes">
                    <include name="schemaorg_apache_xmlbeans/**"></include>
                  </fileset>
                </copy>
              </tasks>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>${pom.groupId}</groupId>
      <artifactId>geronimo-kernel</artifactId>
      <version>1.2-beta</version>
    </dependency>
    <dependency>
      <groupId>${pom.groupId}</groupId>
      <artifactId>geronimo-common</artifactId>
      <version>1.2-beta</version>
    </dependency>
    <dependency>
      <groupId>${pom.groupId}</groupId>
      <artifactId>geronimo-deployment</artifactId>
      <version>1.2-beta</version>
    </dependency>
    <dependency>
      <groupId>${pom.groupId}</groupId>
      <artifactId>geronimo-deploy-config</artifactId>
      <version>1.2-beta</version>
    </dependency>
    <dependency>
      <groupId>xmlbeans</groupId>
      <artifactId>xbean</artifactId>
    </dependency>
    <dependency>
      <groupId>stax</groupId>
      <artifactId>stax-api</artifactId>
    </dependency>
  </dependencies>
  <distributionManagement>
    <status>deployed</status>
  </distributionManagement>
</project>