--- /dev/null
+<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">
+
+ <parent>
+ <groupId>com.google.code.maven-play-plugin</groupId>
+ <artifactId>play-app-default-parent</artifactId>
+ <version>1.0.0-beta3</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.vanbest</groupId>
+ <artifactId>lootjes</artifactId>
+ <version>0.1.0-SNAPSHOT</version>
+ <packaging>play</packaging>
+
+ <properties>
+ <play.version>1.2.5</play.version>
+ <play.seleniumSkip>true</play.seleniumSkip>
+ </properties>
+
+ <name>Lootjes Play! web application</name>
+
+ <repositories>
+ <repository>
+ <id>com.google.code.maven-play-plugin</id>
+ <name>Maven Play Plugin - releases</name>
+ <url>http://maven-play-plugin.googlecode.com/svn/mavenrepo/releases</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ <repository>
+ <id>com.google.code.maven-play-plugin-snapshots</id>
+ <name>Maven Play Plugin - snapshots</name>
+ <url>http://maven-play-plugin.googlecode.com/svn/mavenrepo/snapshots</url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </repository>
+ </repositories>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>com.google.code.maven-play-plugin</groupId>
+ <artifactId>play-maven-plugin</artifactId>
+ <extensions>true</extensions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>com.google.code.maven-play-plugin.org.playframework.modules.crud</groupId>
+ <artifactId>play-crud</artifactId>
+ <version>${play.version}</version>
+ <classifier>module</classifier>
+ <type>zip</type>
+ </dependency>
+ <dependency>
+ <groupId>com.google.code.maven-play-plugin.org.playframework.modules.secure</groupId>
+ <artifactId>play-secure</artifactId>
+ <version>${play.version}</version>
+ <classifier>module</classifier>
+ <type>zip</type>
+ </dependency>
+ </dependencies>
+</project>