diff --git a/pom.xml b/pom.xml
index 9f9466b1f04a607ed6da07c5e1efd0b35bc60595..d1ba1dd6b3f0bb993edfbd8989044b67f8050719 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
 	<name>XChart</name>
 	<groupId>com.xeiam</groupId>
 	<artifactId>xchart</artifactId>
-	<version>1.1.1-SNAPSHOT</version>
+	<version>1.1.0-SNAPSHOT</version>
 	<packaging>jar</packaging>
 	<description>Basic Charts for Java Applications</description>
 	<url>http://xeiam.com</url>
@@ -46,6 +46,26 @@
 			<version>3.0.1</version>
 			<scope>provided</scope>
 		</dependency>
+		<!-- test -->
+		<dependency>
+			<groupId>org.hamcrest</groupId>
+			<artifactId>hamcrest-library</artifactId>
+			<version>1.3</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<!-- dep leaves out hamcrest classes -->
+			<artifactId>junit-dep</artifactId>
+			<version>4.10</version>
+			<scope>test</scope>
+			<exclusions>
+				<exclusion>
+					<groupId>org.hamcrest</groupId>
+					<artifactId>hamcrest-core</artifactId>
+				</exclusion>
+			</exclusions>
+		</dependency>
 	</dependencies>
 
 	<build>