You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mrql.apache.org by fe...@apache.org on 2013/09/06 14:29:32 UTC

git commit: [maven-release-plugin] rollback the release of MRQL-0.9.0-incubating-SNAPSHOT

Updated Branches:
  refs/heads/master f105efb30 -> 1de63a68f


[maven-release-plugin] rollback the release of MRQL-0.9.0-incubating-SNAPSHOT


Project: http://git-wip-us.apache.org/repos/asf/incubator-mrql/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mrql/commit/1de63a68
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mrql/tree/1de63a68
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mrql/diff/1de63a68

Branch: refs/heads/master
Commit: 1de63a68f0213eeb4870f123aff880df8f339092
Parents: f105efb
Author: fegaras <fe...@cse.uta.edu>
Authored: Fri Sep 6 07:28:23 2013 -0500
Committer: fegaras <fe...@cse.uta.edu>
Committed: Fri Sep 6 07:28:23 2013 -0500

----------------------------------------------------------------------
 BSP/pom.xml       | 86 +++++++++++++++++++++++++++++---------------------
 Gen/pom.xml       | 12 ++++---
 MapReduce/pom.xml | 84 ++++++++++++++++++++++++++++--------------------
 Spark/pom.xml     | 72 ++++++++++++++++++++++++------------------
 bin-dist/pom.xml  |  2 +-
 pom.xml           |  5 +--
 src-dist/pom.xml  |  2 +-
 7 files changed, 154 insertions(+), 109 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mrql/blob/1de63a68/BSP/pom.xml
----------------------------------------------------------------------
diff --git a/BSP/pom.xml b/BSP/pom.xml
index 1141f1c..317d3c0 100644
--- a/BSP/pom.xml
+++ b/BSP/pom.xml
@@ -15,7 +15,8 @@
    See the License for the specific language governing permissions and
    limitations under the License.
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>org.apache.mrql</groupId>
@@ -29,7 +30,7 @@
   <parent>
     <groupId>org.apache.mrql</groupId>
     <artifactId>MRQL</artifactId>
-    <version>0.9.1-incubating-SNAPSHOT</version>
+    <version>0.9.0-incubating-SNAPSHOT</version>
   </parent>
   
   <dependencies>
@@ -127,29 +128,37 @@
 	    </goals>
 	    <configuration>
               <target>
-		<property name="compile_classpath" refid="maven.compile.classpath" />
-		<fileset id="gen.path" dir="../src/main/java/core" includes="*.gen" />
-		<pathconvert pathsep=" " property="gen.files" refid="gen.path" />
-		<java classname="org.apache.mrql.gen.Main" classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
-		  <arg line="${gen.files}" />
-		  <arg line="-o" />
-		  <arg file="${project.build.directory}/generated-sources/org/apache/mrql" />
+		<property name="compile_classpath" refid="maven.compile.classpath"/>
+		<fileset id="gen.path" dir="../src/main/java/core" includes="*.gen"/>
+		<pathconvert pathsep=" " property="gen.files" refid="gen.path"/>
+		<java classname="org.apache.mrql.gen.Main"
+		      classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
+		  <arg line="${gen.files}"/>
+		  <arg line="-o"/>
+		  <arg file="${project.build.directory}/generated-sources/org/apache/mrql"/>
 		</java>
-		<fileset id="mr.gen.path" dir="../src/main/java/BSP" includes="*.gen" />
-		<pathconvert pathsep=" " property="mr.gen.files" refid="mr.gen.path" />
-		<java classname="org.apache.mrql.gen.Main" classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
-		  <arg line="${mr.gen.files}" />
-		  <arg line="-o" />
-		  <arg file="${project.build.directory}/generated-sources/org/apache/mrql" />
+		<fileset id="mr.gen.path" dir="../src/main/java/BSP" includes="*.gen"/>
+		<pathconvert pathsep=" " property="mr.gen.files" refid="mr.gen.path"/>
+		<java classname="org.apache.mrql.gen.Main"
+		      classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
+		  <arg line="${mr.gen.files}"/>
+		  <arg line="-o"/>
+		  <arg file="${project.build.directory}/generated-sources/org/apache/mrql"/>
 		</java>
-		<java classname="org.apache.mrql.gen.Main" classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
-		  <arg file="../src/main/java/core/mrql.cgen" />
-		  <arg line="-o" />
-		  <arg file="${project.build.directory}/generated-sources/mrql.cup" />
+		<java classname="org.apache.mrql.gen.Main"
+		      classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
+		  <arg file="../src/main/java/core/mrql.cgen"/>
+		  <arg line="-o"/>
+		  <arg file="${project.build.directory}/generated-sources/mrql.cup"/>
 		</java>
-                <taskdef name="cup" classname="java_cup.anttask.CUPTask" classpathref="maven.compile.classpath" />
-                <cup srcfile="${project.build.directory}/generated-sources/mrql.cup" destdir="${project.build.directory}/generated-sources" nosummary="true" parser="MRQLParser" />
-                <cup srcfile="src/main/java/core/JSON.cup" destdir="${project.build.directory}/generated-sources" nosummary="true" parser="JSONParser" symbols="jsym" />
+                <taskdef name="cup" classname="java_cup.anttask.CUPTask"
+			 classpathref="maven.compile.classpath"/>
+                <cup srcfile="${project.build.directory}/generated-sources/mrql.cup"
+		     destdir="${project.build.directory}/generated-sources"
+		     nosummary="true" parser="MRQLParser"/>
+                <cup srcfile="src/main/java/core/JSON.cup"
+		     destdir="${project.build.directory}/generated-sources"
+		     nosummary="true" parser="JSONParser" symbols="jsym"/>
 	      </target>
   	    </configuration>
 	  </execution>
@@ -160,21 +169,26 @@
 	      <goal>run</goal>
 	    </goals>
 	    <configuration>
-	      <target name="validate_hama" description="Validate all test queries on Hama">
-		<property name="runtime_classpath" refid="maven.runtime.classpath" />
-		<echo message="Evaluating test queries in memory (BSP mode):" />
-		<java classname="org.apache.mrql.Test" classpath="${runtime_classpath}" dir=".." fork="yes">
-		  <jvmarg line="-ms256m" />
-		  <arg file="../tests/queries" />
-		  <arg file="../tests/results/bsp-memory" />
-		  <arg file="../tests/error_log.txt" />
+	      <target name="validate_hama"
+		      description="Validate all test queries on Hama">
+		<property name="runtime_classpath" refid="maven.runtime.classpath"/>
+		<echo message="Evaluating test queries in memory (BSP mode):"/>
+		<java classname="org.apache.mrql.Test"
+		      classpath="${runtime_classpath}"
+		      dir=".." fork="yes">
+		  <jvmarg line="-ms256m"/>
+		  <arg file="../tests/queries"/>
+		  <arg file="../tests/results/bsp-memory"/>
+		  <arg file="../tests/error_log.txt"/>
 		</java>
-		<echo message="Evaluating test queries in Hama local mode:" />
-		<java classname="org.apache.mrql.Test" classpath="../lib/mrql-bsp-${project.version}.jar:${runtime_classpath}" dir=".." fork="yes" error="/dev/null">
-		  <arg line="-local" />
-		  <arg file="../tests/queries" />
-		  <arg file="../tests/results/bsp" />
-		  <arg file="../tests/error_log.txt" />
+		<echo message="Evaluating test queries in Hama local mode:"/>
+		<java classname="org.apache.mrql.Test"
+		      classpath="../lib/mrql-bsp-${project.version}.jar:${runtime_classpath}"
+		      dir=".." fork="yes" error="/dev/null">
+		  <arg line="-local"/>
+		  <arg file="../tests/queries"/>
+		  <arg file="../tests/results/bsp"/>
+		  <arg file="../tests/error_log.txt"/>
 		</java>
 	      </target>
   	    </configuration>

http://git-wip-us.apache.org/repos/asf/incubator-mrql/blob/1de63a68/Gen/pom.xml
----------------------------------------------------------------------
diff --git a/Gen/pom.xml b/Gen/pom.xml
index 39daa2c..87b109b 100644
--- a/Gen/pom.xml
+++ b/Gen/pom.xml
@@ -15,7 +15,8 @@
    See the License for the specific language governing permissions and
    limitations under the License.
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>org.apache.mrql</groupId>
@@ -29,7 +30,7 @@
   <parent>
     <groupId>org.apache.mrql</groupId>
     <artifactId>MRQL</artifactId>
-    <version>0.9.1-incubating-SNAPSHOT</version>
+    <version>0.9.0-incubating-SNAPSHOT</version>
   </parent>
 
   <build>
@@ -76,8 +77,11 @@
 	    </goals>
 	    <configuration>
               <target>
-                <taskdef name="cup" classname="java_cup.anttask.CUPTask" classpathref="maven.compile.classpath" />
-                <cup srcfile="src/main/java/gen/gen.cup" destdir="${project.build.directory}/generated-sources/parsers" nosummary="true" parser="GenParser" symbols="GenSym" />
+                <taskdef name="cup" classname="java_cup.anttask.CUPTask"
+			 classpathref="maven.compile.classpath"/>
+                <cup srcfile="src/main/java/gen/gen.cup"
+		     destdir="${project.build.directory}/generated-sources/parsers"
+		     nosummary="true" parser="GenParser" symbols="GenSym"/>
 	      </target>
   	    </configuration>
 	  </execution>

http://git-wip-us.apache.org/repos/asf/incubator-mrql/blob/1de63a68/MapReduce/pom.xml
----------------------------------------------------------------------
diff --git a/MapReduce/pom.xml b/MapReduce/pom.xml
index e9f289e..e46fc5c 100644
--- a/MapReduce/pom.xml
+++ b/MapReduce/pom.xml
@@ -15,7 +15,8 @@
    See the License for the specific language governing permissions and
    limitations under the License.
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>org.apache.mrql</groupId>
@@ -29,7 +30,7 @@
   <parent>
     <groupId>org.apache.mrql</groupId>
     <artifactId>MRQL</artifactId>
-    <version>0.9.1-incubating-SNAPSHOT</version>
+    <version>0.9.0-incubating-SNAPSHOT</version>
   </parent>
   
   <dependencies>
@@ -130,29 +131,37 @@
 	    </goals>
 	    <configuration>
               <target>
-		<property name="compile_classpath" refid="maven.compile.classpath" />
-		<fileset id="gen.path" dir="../src/main/java/core" includes="*.gen" />
-		<pathconvert pathsep=" " property="gen.files" refid="gen.path" />
-		<java classname="org.apache.mrql.gen.Main" classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
-		  <arg line="${gen.files}" />
-		  <arg line="-o" />
-		  <arg file="${project.build.directory}/generated-sources/org/apache/mrql" />
+		<property name="compile_classpath" refid="maven.compile.classpath"/>
+		<fileset id="gen.path" dir="../src/main/java/core" includes="*.gen"/>
+		<pathconvert pathsep=" " property="gen.files" refid="gen.path"/>
+		<java classname="org.apache.mrql.gen.Main"
+		      classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
+		  <arg line="${gen.files}"/>
+		  <arg line="-o"/>
+		  <arg file="${project.build.directory}/generated-sources/org/apache/mrql"/>
 		</java>
-		<fileset id="mr.gen.path" dir="../src/main/java/MapReduce" includes="*.gen" />
-		<pathconvert pathsep=" " property="mr.gen.files" refid="mr.gen.path" />
-		<java classname="org.apache.mrql.gen.Main" classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
-		  <arg line="${mr.gen.files}" />
-		  <arg line="-o" />
-		  <arg file="${project.build.directory}/generated-sources/org/apache/mrql" />
+		<fileset id="mr.gen.path" dir="../src/main/java/MapReduce" includes="*.gen"/>
+		<pathconvert pathsep=" " property="mr.gen.files" refid="mr.gen.path"/>
+		<java classname="org.apache.mrql.gen.Main"
+		      classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
+		  <arg line="${mr.gen.files}"/>
+		  <arg line="-o"/>
+		  <arg file="${project.build.directory}/generated-sources/org/apache/mrql"/>
 		</java>
-		<java classname="org.apache.mrql.gen.Main" classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
-		  <arg file="../src/main/java/core/mrql.cgen" />
-		  <arg line="-o" />
-		  <arg file="${project.build.directory}/generated-sources/mrql.cup" />
+		<java classname="org.apache.mrql.gen.Main"
+		      classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
+		  <arg file="../src/main/java/core/mrql.cgen"/>
+		  <arg line="-o"/>
+		  <arg file="${project.build.directory}/generated-sources/mrql.cup"/>
 		</java>
-                <taskdef name="cup" classname="java_cup.anttask.CUPTask" classpathref="maven.compile.classpath" />
-                <cup srcfile="${project.build.directory}/generated-sources/mrql.cup" destdir="${project.build.directory}/generated-sources" nosummary="true" parser="MRQLParser" />
-                <cup srcfile="src/main/java/core/JSON.cup" destdir="${project.build.directory}/generated-sources" nosummary="true" parser="JSONParser" symbols="jsym" />
+                <taskdef name="cup" classname="java_cup.anttask.CUPTask"
+			 classpathref="maven.compile.classpath"/>
+                <cup srcfile="${project.build.directory}/generated-sources/mrql.cup"
+		     destdir="${project.build.directory}/generated-sources"
+		     nosummary="true" parser="MRQLParser"/>
+                <cup srcfile="src/main/java/core/JSON.cup"
+		     destdir="${project.build.directory}/generated-sources"
+		     nosummary="true" parser="JSONParser" symbols="jsym"/>
 	      </target>
 	    </configuration>
 	  </execution>
@@ -163,20 +172,25 @@
 	      <goal>run</goal>
 	    </goals>
 	    <configuration>
-	      <target name="validate_hadoop" description="Validate all test queries on Hadoop">
-		<property name="runtime_classpath" refid="maven.runtime.classpath" />
-		<echo message="Evaluating test queries in memory (Map-Reduce mode):" />
-		<java classname="org.apache.mrql.Test" classpath="${runtime_classpath}" dir=".." fork="yes">
-		  <arg file="../tests/queries" />
-		  <arg file="../tests/results/mr-memory" />
-		  <arg file="../tests/error_log.txt" />
+	      <target name="validate_hadoop"
+		      description="Validate all test queries on Hadoop">
+		<property name="runtime_classpath" refid="maven.runtime.classpath"/>
+		<echo message="Evaluating test queries in memory (Map-Reduce mode):"/>
+		<java classname="org.apache.mrql.Test"
+		      classpath="${runtime_classpath}"
+		      dir=".." fork="yes">
+		  <arg file="../tests/queries"/>
+		  <arg file="../tests/results/mr-memory"/>
+		  <arg file="../tests/error_log.txt"/>
 		</java>
-		<echo message="Evaluating test queries in Hadoop local mode:" />
-		<java classname="org.apache.mrql.Test" classpath="../lib/mrql-mr-${project.version}.jar:${runtime_classpath}" dir=".." fork="yes" error="/dev/null">
-		  <arg line="-local" />
-		  <arg file="../tests/queries" />
-		  <arg file="../tests/results/hadoop" />
-		  <arg file="../tests/error_log.txt" />
+		<echo message="Evaluating test queries in Hadoop local mode:"/>
+		<java classname="org.apache.mrql.Test"
+		      classpath="../lib/mrql-mr-${project.version}.jar:${runtime_classpath}"
+		      dir=".." fork="yes" error="/dev/null">
+		  <arg line="-local"/>
+		  <arg file="../tests/queries"/>
+		  <arg file="../tests/results/hadoop"/>
+		  <arg file="../tests/error_log.txt"/>
 		</java>
 	      </target>
   	    </configuration>

http://git-wip-us.apache.org/repos/asf/incubator-mrql/blob/1de63a68/Spark/pom.xml
----------------------------------------------------------------------
diff --git a/Spark/pom.xml b/Spark/pom.xml
index 336f726..f6a1310 100644
--- a/Spark/pom.xml
+++ b/Spark/pom.xml
@@ -15,7 +15,8 @@
    See the License for the specific language governing permissions and
    limitations under the License.
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>org.apache.mrql</groupId>
@@ -29,7 +30,7 @@
   <parent>
     <groupId>org.apache.mrql</groupId>
     <artifactId>MRQL</artifactId>
-    <version>0.9.1-incubating-SNAPSHOT</version>
+    <version>0.9.0-incubating-SNAPSHOT</version>
   </parent>
   
   <dependencies>
@@ -127,29 +128,37 @@
 	    </goals>
 	    <configuration>
               <target>
-		<property name="compile_classpath" refid="maven.compile.classpath" />
-		<fileset id="gen.path" dir="../src/main/java/core" includes="*.gen" />
-		<pathconvert pathsep=" " property="gen.files" refid="gen.path" />
-		<java classname="org.apache.mrql.gen.Main" classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
-		  <arg line="${gen.files}" />
-		  <arg line="-o" />
-		  <arg file="${project.build.directory}/generated-sources/org/apache/mrql" />
+		<property name="compile_classpath" refid="maven.compile.classpath"/>
+		<fileset id="gen.path" dir="../src/main/java/core" includes="*.gen"/>
+		<pathconvert pathsep=" " property="gen.files" refid="gen.path"/>
+		<java classname="org.apache.mrql.gen.Main"
+		      classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
+		  <arg line="${gen.files}"/>
+		  <arg line="-o"/>
+		  <arg file="${project.build.directory}/generated-sources/org/apache/mrql"/>
 		</java>
-		<fileset id="mr.gen.path" dir="../src/main/java/spark" includes="*.gen" />
-		<pathconvert pathsep=" " property="mr.gen.files" refid="mr.gen.path" />
-		<java classname="org.apache.mrql.gen.Main" classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
-		  <arg line="${mr.gen.files}" />
-		  <arg line="-o" />
-		  <arg file="${project.build.directory}/generated-sources/org/apache/mrql" />
+		<fileset id="mr.gen.path" dir="../src/main/java/spark" includes="*.gen"/>
+		<pathconvert pathsep=" " property="mr.gen.files" refid="mr.gen.path"/>
+		<java classname="org.apache.mrql.gen.Main"
+		      classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
+		  <arg line="${mr.gen.files}"/>
+		  <arg line="-o"/>
+		  <arg file="${project.build.directory}/generated-sources/org/apache/mrql"/>
 		</java>
-		<java classname="org.apache.mrql.gen.Main" classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
-		  <arg file="../src/main/java/core/mrql.cgen" />
-		  <arg line="-o" />
-		  <arg file="${project.build.directory}/generated-sources/mrql.cup" />
+		<java classname="org.apache.mrql.gen.Main"
+		      classpath="../lib/gen-${project.version}.jar:${compile_classpath}">
+		  <arg file="../src/main/java/core/mrql.cgen"/>
+		  <arg line="-o"/>
+		  <arg file="${project.build.directory}/generated-sources/mrql.cup"/>
 		</java>
-                <taskdef name="cup" classname="java_cup.anttask.CUPTask" classpathref="maven.compile.classpath" />
-                <cup srcfile="${project.build.directory}/generated-sources/mrql.cup" destdir="${project.build.directory}/generated-sources" nosummary="true" parser="MRQLParser" />
-                <cup srcfile="src/main/java/core/JSON.cup" destdir="${project.build.directory}/generated-sources" nosummary="true" parser="JSONParser" symbols="jsym" />
+                <taskdef name="cup" classname="java_cup.anttask.CUPTask"
+			 classpathref="maven.compile.classpath"/>
+                <cup srcfile="${project.build.directory}/generated-sources/mrql.cup"
+		     destdir="${project.build.directory}/generated-sources"
+		     nosummary="true" parser="MRQLParser"/>
+                <cup srcfile="src/main/java/core/JSON.cup"
+		     destdir="${project.build.directory}/generated-sources"
+		     nosummary="true" parser="JSONParser" symbols="jsym"/>
 	      </target>
   	    </configuration>
 	  </execution>
@@ -160,14 +169,17 @@
 	      <goal>run</goal>
 	    </goals>
 	    <configuration>
-	      <target name="validate_spark" description="Validate all test queries on Spark">
-		<property name="runtime_classpath" refid="maven.runtime.classpath" />
-		<echo message="Evaluating test queries in Spark local mode:" />
-		<java classname="org.apache.mrql.Test" classpath="../lib/mrql-spark-${project.version}.jar:${runtime_classpath}" dir=".." fork="yes" error="/dev/null">
-		  <arg line="-local" />
-		  <arg file="../tests/queries" />
-		  <arg file="../tests/results/spark" />
-		  <arg file="../tests/error_log.txt" />
+	      <target name="validate_spark"
+		      description="Validate all test queries on Spark">
+		<property name="runtime_classpath" refid="maven.runtime.classpath"/>
+		<echo message="Evaluating test queries in Spark local mode:"/>
+		<java classname="org.apache.mrql.Test"
+		      classpath="../lib/mrql-spark-${project.version}.jar:${runtime_classpath}"
+		      dir=".." fork="yes" error="/dev/null">
+		  <arg line="-local"/>
+		  <arg file="../tests/queries"/>
+		  <arg file="../tests/results/spark"/>
+		  <arg file="../tests/error_log.txt"/>
 		</java>
 	      </target>
   	    </configuration>

http://git-wip-us.apache.org/repos/asf/incubator-mrql/blob/1de63a68/bin-dist/pom.xml
----------------------------------------------------------------------
diff --git a/bin-dist/pom.xml b/bin-dist/pom.xml
index e6c9843..fb5f97a 100644
--- a/bin-dist/pom.xml
+++ b/bin-dist/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.mrql</groupId>
     <artifactId>MRQL</artifactId>
-    <version>0.9.1-incubating-SNAPSHOT</version>
+    <version>0.9.0-incubating-SNAPSHOT</version>
   </parent>
 
   <build>

http://git-wip-us.apache.org/repos/asf/incubator-mrql/blob/1de63a68/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 6952010..448bea0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -15,12 +15,13 @@
    See the License for the specific language governing permissions and
    limitations under the License.
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>org.apache.mrql</groupId>
   <artifactId>MRQL</artifactId>
-  <version>0.9.1-incubating-SNAPSHOT</version>
+  <version>0.9.0-incubating-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>MRQL</name>
   <description>MRQL is a query processing and optimization system for large-scale, distributed data analysis, built on top of Apache Hadoop, Hama, and Spark</description>

http://git-wip-us.apache.org/repos/asf/incubator-mrql/blob/1de63a68/src-dist/pom.xml
----------------------------------------------------------------------
diff --git a/src-dist/pom.xml b/src-dist/pom.xml
index a1d3c4b..f39b470 100644
--- a/src-dist/pom.xml
+++ b/src-dist/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.mrql</groupId>
     <artifactId>MRQL</artifactId>
-    <version>0.9.1-incubating-SNAPSHOT</version>
+    <version>0.9.0-incubating-SNAPSHOT</version>
   </parent>
 
   <build>