<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.banda.function</groupId>
	<artifactId>banda-function-business</artifactId>
	<packaging>jar</packaging>
	<name>banda-function-business</name>
	<url>http://peterbanda.net</url>

	<parent>
		<groupId>com.banda</groupId>
		<artifactId>banda-parent</artifactId>
		<version>0.4.0</version>
	</parent>

	<dependencies>
		<dependency>
			<groupId>com.banda</groupId>
			<artifactId>banda-core-scala</artifactId>
			<version>${project.version}</version>
		</dependency>

		<dependency>
			<groupId>com.banda.function</groupId>
			<artifactId>banda-function-domain</artifactId>
			<version>${project.version}</version>
		</dependency>

		<dependency>
			<groupId>commons-lang</groupId>
			<artifactId>commons-lang</artifactId>
			<version>2.5</version>
		</dependency>

		<dependency>
			<groupId>jep</groupId>
			<artifactId>jep</artifactId>
			<version>2.24</version>
		</dependency>

		<dependency>
			<groupId>jblas</groupId>
			<artifactId>jblas</artifactId>
			<version>1.2.0</version>
		</dependency>

	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.scala-tools</groupId>
				<artifactId>maven-scala-plugin</artifactId>
				<executions>
					<execution>
						<id>compile</id>
						<goals>
							<goal>compile</goal>
						</goals>
						<phase>compile</phase>
					</execution>

					<execution>
						<id>test-compile</id>
						<goals>
							<goal>testCompile</goal>
						</goals>
						<phase>test-compile</phase>
					</execution>

					<execution>
						<phase>process-resources</phase>
						<goals>
							<goal>compile</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
          			<args>
            			<arg>-optimise</arg>
          			</args>
        		</configuration>
			</plugin>
		</plugins>
	</build>
</project>
