]> www.vanbest.org Git - lootjes-play/commitdiff
Initial mavenisation
authorJan-Pascal van Best <janpascal@vanbest.org>
Fri, 14 Sep 2012 20:29:07 +0000 (22:29 +0200)
committerJan-Pascal van Best <janpascal@vanbest.org>
Fri, 14 Sep 2012 20:29:07 +0000 (22:29 +0200)
.gitignore
pom.xml [new file with mode: 0644]

index b00c2c833231a37cb23cb79b98d010b3ac77b720..c763a636eb3cdb0ec2122c9becc1f984c1e07958 100644 (file)
@@ -3,4 +3,5 @@
 /lib
 /test-result
 /logs
+/precompiled
 *.swp
diff --git a/pom.xml b/pom.xml
new file mode 100644 (file)
index 0000000..0bf9a61
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,69 @@
+<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>