<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <parent>
    <artifactId>BroadleafCommerce</artifactId>
    <groupId>org.broadleafcommerce</groupId>
    <version>1.1.0-M2</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.broadleafcommerce</groupId>
  <artifactId>broadleaf-usps-schemas</artifactId>
  <name>BroadleafCommerceUSPSSchemas</name>
  <version>1.1.0-M2</version>
  <url>http://maven.apache.org</url>
  <build>
  	<plugins>
  		<plugin>
  			<groupId>org.apache.maven.plugins</groupId>
  			<artifactId>maven-antrun-plugin</artifactId>
  			<version>1.3</version>
  			<executions>
		        <!-- this ant script runs testng natively -->
		        <execution>
		          <id>uspsschemas-src</id>
		          <phase>generate-sources</phase>
		          <configuration>
		            <tasks>
		            	<taskdef name="xmlbean" classname="org.apache.xmlbeans.impl.tool.XMLBean" classpathref="maven.compile.classpath" />
						<xmlbean srcgendir="src/main/java" srconly="true" classpathref="maven.compile.classpath">
							<fileset dir="src/main/resources" includes="*.xsd" />
						</xmlbean>
		            </tasks>
		          </configuration>
		          <goals><goal>run</goal></goals>
		        </execution>
		        <execution>
		          <id>uspsschemas-compile</id>
		          <phase>compile</phase>
		          <configuration>
		            <tasks>
		            	<taskdef name="xmlbean" classname="org.apache.xmlbeans.impl.tool.XMLBean" classpathref="maven.compile.classpath" />
						<xmlbean classgendir="target/classes" classpathref="maven.compile.classpath">
							<fileset dir="src/main/resources" includes="*.xsd" />
						</xmlbean>
		            </tasks>
		          </configuration>
		          <goals><goal>run</goal></goals>
		        </execution>
		     </executions>
		      <dependencies>
		        <dependency>
		          <groupId>ant</groupId>
		          <artifactId>ant-junit</artifactId>
		          <version>1.6.2</version>
		        </dependency>
		        <dependency>
			  		<groupId>cobertura</groupId>
			  		<artifactId>cobertura</artifactId>
			  		<version>1.8</version>
			  	</dependency>
		      </dependencies>
  		</plugin>
  	</plugins>
  </build>
  <dependencies>
    <dependency>
    	<groupId>org.apache.xmlbeans</groupId>
    	<artifactId>xmlbeans</artifactId>
    </dependency>
  </dependencies>
</project>