<?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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<parent>
		<groupId>org.wicketstuff.scala</groupId>
		<artifactId>scala-extensions-parent</artifactId>
		<version>7.12.0</version>
	</parent>

	<packaging>maven-archetype</packaging>	
	<artifactId>wicketstuff-scala-archetype</artifactId>
	<name>Wicket-Scala Archetype</name>
	<description>Basic setup for a project that combines Scala and Wicket, 
		depending on the Wicket-Scala project. Includes an example Specs 
		test.</description>

	<properties>
		<version.scala>2.10.3</version.scala>
		<version.wicketstuff>${project.version}</version.wicketstuff>
		<version.scalatest>2.0</version.scalatest>
	</properties>

	<developers>
		<developer>
			<name>Antony Stubbs</name>
			<email>antony.stubbs@gmail.com</email>
			<url>antonystubbs.com</url>
			<timezone>+12</timezone>
		</developer>
		<developer>
			<name>Daan van Etten</name>
			<url>stuq.nl</url>
			<timezone>+1</timezone>
		</developer>
	</developers>

	<build>
		<resources>
			<resource>
				<filtering>false</filtering>
				<directory>${basedir}/src/main/resources</directory>
				<includes>
					<include>**/*</include>
				</includes>
			</resource>
		</resources>
		<extensions>
			<extension>
				<groupId>org.apache.maven.archetype</groupId>
				<artifactId>archetype-packaging</artifactId>
				<version>2.2</version>
			</extension>
		</extensions>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-archetype-plugin</artifactId>
				<version>2.2</version>
			</plugin>
		</plugins>
	</build>

</project>
