DATACOUCH-16 - Allow View customization through @View annotations.

An initial first attempt at allowing for basic View customization using the
@View annotation.

For now, it does not support "dynamic" finders, such as findByUsername, but
I'm sure it will come shortly aftewards.

Also added in hamcrest library to gradually transistion deprecated JUnit
methods to a better assertion library :-)

-=david=-
This commit is contained in:
David Harrigan
2013-10-10 16:39:00 +01:00
committed by Michael Nitschinger
parent 8ade60937a
commit 48385c965a
14 changed files with 479 additions and 48 deletions

View File

@@ -87,6 +87,13 @@
<version>${jackson}</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>${hamcrest}</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>