diff pom.xml @ 38:cb9fabaedfd4

added tests and changed testing provider to junit47
author Shoshi TAMAKI
date Mon, 28 Jan 2013 18:52:52 +0900
parents 761d04aecfcb
children a3a8c49ad209
line wrap: on
line diff
--- a/pom.xml	Sat Jan 26 22:52:32 2013 +0900
+++ b/pom.xml	Mon Jan 28 18:52:52 2013 +0900
@@ -18,7 +18,7 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>3.8.1</version>
+      <version>4.7</version>
       <scope>test</scope>
     </dependency>
     <dependency>
@@ -32,11 +32,6 @@
     	<version>3.2.1</version>
     </dependency>
     <dependency>
-    	<groupId>net.sf.jpf</groupId>
-    	<artifactId>jpf</artifactId>
-    	<version>1.5</version>
-    </dependency>
-    <dependency>
     	<groupId>org.functionaljava</groupId>
     	<artifactId>functionaljava</artifactId>
     	<version>3.1</version>
@@ -52,6 +47,21 @@
   				<target>1.6</target>
   			</configuration>
   		</plugin>
+  		<plugin>
+  			<groupId>org.apache.maven.plugin</groupId>
+  			<artifactId>maven-surefire-plugin</artifactId>
+        	<version>2.13</version>
+        	<configuration>
+        		<exclude>**/*TestBase.java</exclude>
+        	</configuration>
+        	<dependencies>
+        	<dependency>
+        		<groupId>org.apache.maven.surefire</groupId>
+       			<artifactId>surefire-junit47</artifactId>
+        		<version>2.13</version>
+      			</dependency>
+        	</dependencies>
+  		</plugin>
   	</plugins>
   </build>
 </project>