don't reuse console/server test JVMs

HttpServerPortTest will fail if it isn't the first test run (due to
HttpServer internals)
diff --git a/console/server/pom.xml b/console/server/pom.xml
index 7c5944c..956ff17 100644
--- a/console/server/pom.xml
+++ b/console/server/pom.xml
@@ -84,6 +84,14 @@
           </execution>
         </executions>
       </plugin>
+	 <plugin>
+	    <groupId>org.apache.maven.plugins</groupId>
+	    <artifactId>maven-surefire-plugin</artifactId>
+	    <configuration>
+	        <!-- needed because of HttpServer impl and HttpServerPortTest -->
+	        <reuseForks>false</reuseForks>
+	    </configuration>
+	  </plugin>
    </plugins>
   </build>