angular prototype

This commit is contained in:
Jeremie Panzer
2013-03-21 16:22:58 +01:00
parent a5ac6b9c44
commit 0161de1f13
19 changed files with 508 additions and 6 deletions

15
pom.xml
View File

@@ -10,12 +10,14 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jpa.datasource.name>jdbc/commafeedDS</jpa.datasource.name>
</properties>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/java</directory>
@@ -195,11 +197,24 @@
<artifactId>wicket-webjars</artifactId>
<version>0.2.0</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>angularjs</artifactId>
<version>1.0.5</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.2.2</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>openshift</id>
<properties>
<jpa.datasource.name>java:/jdbc/commafeedDS</jpa.datasource.name>
</properties>
<build>
<finalName>commafeed</finalName>
<plugins>