Consolidate surefire config into top-level pom
diff --git a/hyracks/pom.xml b/hyracks/pom.xml
index d8d3c63..886654a 100644
--- a/hyracks/pom.xml
+++ b/hyracks/pom.xml
@@ -21,19 +21,11 @@
   <packaging>pom</packaging>
   <name>hyracks</name>
 
-  <properties>
-    <jvm.extraargs />
-    <exclude.tests>edu.uci.ics.hyracks.test.infrastructure.SlowTest</exclude.tests>
-  </properties>
-
-  <profiles>
-    <profile>
-      <id>slow</id>
-      <properties>
-	<exclude.tests>java.lang.String</exclude.tests>
-      </properties>
-    </profile>
-  </profiles>
+  <parent>
+    <groupId>edu.uci.ics.hyracks</groupId>
+    <artifactId>fullstack</artifactId>
+    <version>0.2.11-SNAPSHOT</version>
+  </parent>
 
   <build>
     <plugins>
@@ -50,23 +42,6 @@
         <artifactId>versions-maven-plugin</artifactId>
         <version>1.2</version>
       </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <version>2.16</version>
-        <dependencies>
-          <dependency>
-            <groupId>org.apache.maven.surefire</groupId>
-            <artifactId>surefire-junit47</artifactId>
-            <version>2.16</version>
-          </dependency>
-        </dependencies>
-        <configuration>
-          <forkMode>pertest</forkMode>
-          <argLine>-enableassertions -Djava.util.logging.config.file=${user.home}/logging.properties -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${jvm.extraargs} -Xmx2048m</argLine>
-	  <excludedGroups>${exclude.tests}</excludedGroups>
-        </configuration>
-      </plugin>
     </plugins>
   </build>