<?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">

    <modelVersion>4.0.0</modelVersion>
    <groupId>com._3kbo.talis</groupId>
    <artifactId>talis-store</artifactId>
    <name>Talis Store Loader</name>
    <version>0.2</version>

    <dependencies>
        <dependency>
            <groupId>org.codehaus.groovy.maven.runtime</groupId>
            <artifactId>gmaven-runtime-1.6</artifactId>
            <version>1.0</version>
        </dependency>     
		<dependency>
		  <groupId>org.codehaus.groovy.modules.http-builder</groupId>
		  <artifactId>http-builder</artifactId>
		  <version>0.5.0-RC2</version>
		</dependency>
        
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.groovy.maven</groupId>
                <artifactId>gmaven-plugin</artifactId>
                <!-- version>1.0-rc-3</version -->
                <version>1.0</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>generateStubs</goal>
                            <goal>compile</goal>
                            <goal>generateTestStubs</goal>
                            <goal>testCompile</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
              <!-- run using mvn javadoc:javadoc -->
	      <plugin>
	        <groupId>org.apache.maven.plugins</groupId>
	        <artifactId>maven-javadoc-plugin</artifactId>
	        <version>2.6.1</version>
<!--
			<executions>
				<execution>
					<phase>package</phase>
					<goals>
						<goal>javadoc</goal>
					</goals>
				</execution>
			</executions>
	        <configuration></configuration>			
-->
	      </plugin>
        </plugins>
	    <resources>
	      <resource>
			<directory>src/main/resources</directory>
	        <excludes>
	          <exclude>TalisConfig.groovy</exclude>
	        </excludes>
	      </resource>
	    </resources>
    </build>
</project>


