Replace hamcrest with fest fluent matchers and add a simple description.
diff --git a/pom.xml b/pom.xml
index 9459c65..7a81a21 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,6 +6,11 @@
<version>0.0.1-SNAPSHOT</version>
<name>socrates2012</name>
+ <description>
+ Simple project of Sandro Mancuso to learn legacy code refactoring. We adopted this project for our
+ event "Softwerkskammer Hamburg"
+ </description>
+
<properties>
<!--General stuff-->
<targetJdk>1.7</targetJdk>
@@ -40,15 +45,9 @@
<dependencies>
<dependency>
- <groupId>org.hamcrest</groupId>
- <artifactId>hamcrest-core</artifactId>
- <version>${hamcrest.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.hamcrest</groupId>
- <artifactId>hamcrest-library</artifactId>
- <version>${hamcrest.version}</version>
+ <groupId>org.easytesting</groupId>
+ <artifactId>fest-assert-core</artifactId>
+ <version>2.0M10</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -57,11 +56,11 @@
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
-<!-- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-all</artifactId>
- <version>1.9.5</version>
- <scope>test</scope>
- </dependency>-->
+ <!-- <dependency>
+ <groupId>org.mockito</groupId>
+ <artifactId>mockito-all</artifactId>
+ <version>1.9.5</version>
+ <scope>test</scope>
+ </dependency>-->
</dependencies>
</project>
\ No newline at end of file