You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vxquery.apache.org by ti...@apache.org on 2014/04/22 07:49:25 UTC

[01/19] git commit: Fixed dependency management. Changed Hyracks dependency to 0.2.11 for the release.

Repository: incubator-vxquery
Updated Branches:
  refs/heads/master 0df78c506 -> 92302902f


Fixed dependency management. Changed Hyracks dependency to 0.2.11 for the release.


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

Branch: refs/heads/master
Commit: 601520720e5369d3fd460075b65cd6f767caa664
Parents: a09d1f5
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Tue Apr 1 10:51:23 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Tue Apr 1 10:51:23 2014 -0700

----------------------------------------------------------------------
 pom.xml                | 215 ++++++++++++++++++++++++++++++++++++--------
 vxquery-cli/pom.xml    |  28 ++++--
 vxquery-core/pom.xml   |  37 +-------
 vxquery-server/pom.xml |   6 --
 vxquery-xtest/pom.xml  |  18 ++--
 5 files changed, 209 insertions(+), 95 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/60152072/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index db91760..00e815e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,7 +36,7 @@
     <name>Apache Software Foundation</name>
     <url>http://www.apache.org/</url>
   </organization>
-  
+
   <licenses>
     <license>
       <name>The Apache Software License, Version 2.0</name>
@@ -45,7 +45,7 @@
       <comments>A business-friendly OSS license</comments>
     </license>
   </licenses>
-  
+
   <scm>
     <connection>scm:svn:https://svn.apache.org/repos/asf/incubator/vxquery</connection>
     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/vxquery/branches/vxquery_0_2_staging</developerConnection>
@@ -56,7 +56,7 @@
     <system>Jira</system>
     <url>https://issues.apache.org/jira/browse/VXQUERY</url>
   </issueManagement>
-  
+
   <developers>
     <developer>
       <id>antelder</id>
@@ -175,7 +175,7 @@
       <timezone />
     </developer>
   </developers>
-  
+
   <mailingLists>
     <mailingList>
       <name>VXQuery-dev</name>
@@ -192,7 +192,7 @@
       <archive>http://mail-archives.apache.org/mod_mbox/incubator-vxquery-commits/</archive>
     </mailingList>
   </mailingLists>
-  
+
   <distributionManagement>
     <site>
       <id>vxquery.website</id>
@@ -221,38 +221,175 @@
       </releases>
     </repository>
   </repositories>
-  
-  <dependencies>
-    <dependency>
-      <groupId>args4j</groupId>
-      <artifactId>args4j</artifactId>
-      <version>2.0.9</version>
-    </dependency>
-
-    <dependency>
-      <groupId>edu.uci.ics.hyracks</groupId>
-      <artifactId>hyracks-client</artifactId>
-      <version>${hyracks.version}</version>
-    </dependency>
-
-    <dependency>
-      <groupId>edu.uci.ics.hyracks</groupId>
-      <artifactId>hyracks-control-cc</artifactId>
-      <version>${hyracks.version}</version>
-    </dependency>
-
-    <dependency>
-      <groupId>edu.uci.ics.hyracks</groupId>
-      <artifactId>hyracks-control-nc</artifactId>
-      <version>${hyracks.version}</version>
-    </dependency>
-
-    <dependency>
-      <groupId>edu.uci.ics.hyracks</groupId>
-      <artifactId>algebricks-compiler</artifactId>
-      <version>${hyracks.version}</version>
-    </dependency>
-  </dependencies>
+
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>args4j</groupId>
+        <artifactId>args4j</artifactId>
+        <version>2.0.9</version>
+      </dependency>
+
+      <dependency>
+        <groupId>edu.uci.ics.hyracks</groupId>
+        <artifactId>hyracks-client</artifactId>
+        <version>${hyracks.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>edu.uci.ics.hyracks</groupId>
+        <artifactId>hyracks-control-common</artifactId>
+        <version>${hyracks.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>edu.uci.ics.hyracks</groupId>
+        <artifactId>hyracks-control-cc</artifactId>
+        <version>${hyracks.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>edu.uci.ics.hyracks</groupId>
+        <artifactId>hyracks-control-nc</artifactId>
+        <version>${hyracks.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>edu.uci.ics.hyracks</groupId>
+        <artifactId>algebricks-compiler</artifactId>
+        <version>${hyracks.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>org.apache.commons</groupId>
+        <artifactId>commons-lang3</artifactId>
+        <version>3.1</version>
+      </dependency>
+
+      <dependency>
+        <groupId>edu.uci.ics.hyracks</groupId>
+        <artifactId>algebricks-common</artifactId>
+        <version>${hyracks.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>edu.uci.ics.hyracks</groupId>
+        <artifactId>algebricks-core</artifactId>
+        <version>${hyracks.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>edu.uci.ics.hyracks</groupId>
+        <artifactId>algebricks-data</artifactId>
+        <version>${hyracks.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>edu.uci.ics.hyracks</groupId>
+        <artifactId>algebricks-rewriter</artifactId>
+        <version>${hyracks.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>edu.uci.ics.hyracks</groupId>
+        <artifactId>algebricks-runtime</artifactId>
+        <version>${hyracks.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>edu.uci.ics.hyracks</groupId>
+        <artifactId>hyracks-api</artifactId>
+        <version>${hyracks.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>edu.uci.ics.hyracks</groupId>
+        <artifactId>hyracks-data-std</artifactId>
+        <version>${hyracks.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>edu.uci.ics.hyracks</groupId>
+        <artifactId>hyracks-dataflow-common</artifactId>
+        <version>${hyracks.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>edu.uci.ics.hyracks</groupId>
+        <artifactId>hyracks-dataflow-std</artifactId>
+        <version>${hyracks.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>ant</groupId>
+        <artifactId>ant-trax</artifactId>
+        <version>1.6.5</version>
+        <scope>provided</scope>
+      </dependency>
+
+      <dependency>
+        <groupId>org.codehaus.woodstox</groupId>
+        <artifactId>stax2-api</artifactId>
+        <version>3.0.1</version>
+      </dependency>
+
+      <dependency>
+        <groupId>org.codehaus.woodstox</groupId>
+        <artifactId>woodstox-core-asl</artifactId>
+        <version>4.0.6</version>
+      </dependency>
+
+      <dependency>
+        <groupId>xalan</groupId>
+        <artifactId>serializer</artifactId>
+        <version>2.7.1</version>
+      </dependency>
+
+      <dependency>
+        <groupId>xerces</groupId>
+        <artifactId>xercesImpl</artifactId>
+        <version>2.9.1</version>
+      </dependency>
+
+      <dependency>
+        <groupId>activemq</groupId>
+        <artifactId>activemq-transport-xstream</artifactId>
+        <version>2.1</version>
+      </dependency>
+
+      <dependency>
+        <groupId>com.thoughtworks.xstream</groupId>
+        <artifactId>xstream</artifactId>
+        <version>1.3.1</version>
+      </dependency>
+
+      <dependency>
+        <groupId>commons-io</groupId>
+        <artifactId>commons-io</artifactId>
+        <version>1.3.2</version>
+      </dependency>
+
+      <dependency>
+        <groupId>commons-codec</groupId>
+        <artifactId>commons-codec</artifactId>
+        <version>1.4</version>
+      </dependency>
+
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>4.7</version>
+        <scope>test</scope>
+      </dependency>
+
+      <dependency>
+        <groupId>org.mortbay.jetty</groupId>
+        <artifactId>jetty</artifactId>
+        <version>6.1.4</version>
+        <scope>compile</scope>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
 
   <build>
     <pluginManagement>
@@ -272,7 +409,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-javadoc-plugin</artifactId>
-          <version>2.9</version>
+          <version>2.9.1</version>
         </plugin>
       </plugins>
     </pluginManagement>
@@ -424,7 +561,7 @@
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-    <hyracks.version>0.2.11-SNAPSHOT</hyracks.version>
+    <hyracks.version>0.2.11</hyracks.version>
   </properties>
 
   <modules>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/60152072/vxquery-cli/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-cli/pom.xml b/vxquery-cli/pom.xml
index 86b896a..a7a51df 100644
--- a/vxquery-cli/pom.xml
+++ b/vxquery-cli/pom.xml
@@ -90,31 +90,41 @@
     <dependency>
       <groupId>edu.uci.ics.hyracks</groupId>
       <artifactId>hyracks-api</artifactId>
-      <version>${hyracks.version}</version>
     </dependency>
-    
+
+    <dependency>
+      <groupId>edu.uci.ics.hyracks</groupId>
+      <artifactId>hyracks-client</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>edu.uci.ics.hyracks</groupId>
+      <artifactId>hyracks-control-cc</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>edu.uci.ics.hyracks</groupId>
+      <artifactId>hyracks-control-nc</artifactId>
+    </dependency>
+
     <dependency>
       <groupId>edu.uci.ics.hyracks</groupId>
       <artifactId>algebricks-common</artifactId>
-      <version>${hyracks.version}</version>
     </dependency>
-    
+
     <dependency>
       <groupId>edu.uci.ics.hyracks</groupId>
       <artifactId>algebricks-core</artifactId>
-      <version>${hyracks.version}</version>
     </dependency>
-    
+
     <dependency>
       <groupId>edu.uci.ics.hyracks</groupId>
       <artifactId>hyracks-control-common</artifactId>
-      <version>${hyracks.version}</version>
     </dependency>
-    
+
     <dependency>
       <groupId>edu.uci.ics.hyracks</groupId>
       <artifactId>hyracks-dataflow-std</artifactId>
-      <version>${hyracks.version}</version>
     </dependency>
   </dependencies>
 

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/60152072/vxquery-core/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-core/pom.xml b/vxquery-core/pom.xml
index ebfb1a7..5a0dfdd 100644
--- a/vxquery-core/pom.xml
+++ b/vxquery-core/pom.xml
@@ -176,122 +176,87 @@
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-lang3</artifactId>
-      <version>3.1</version>
     </dependency>
 
     <dependency>
       <groupId>edu.uci.ics.hyracks</groupId>
-      <artifactId>algebricks-common</artifactId>
-      <version>${hyracks.version}</version>
-    </dependency>
-
-    <dependency>
-      <groupId>edu.uci.ics.hyracks</groupId>
-      <artifactId>algebricks-core</artifactId>
-      <version>${hyracks.version}</version>
+      <artifactId>algebricks-compiler</artifactId>
     </dependency>
 
     <dependency>
       <groupId>edu.uci.ics.hyracks</groupId>
       <artifactId>algebricks-data</artifactId>
-      <version>${hyracks.version}</version>
-    </dependency>
-
-    <dependency>
-      <groupId>edu.uci.ics.hyracks</groupId>
-      <artifactId>algebricks-rewriter</artifactId>
-      <version>${hyracks.version}</version>
-    </dependency>
-
-    <dependency>
-      <groupId>edu.uci.ics.hyracks</groupId>
-      <artifactId>algebricks-runtime</artifactId>
-      <version>${hyracks.version}</version>
     </dependency>
 
     <dependency>
       <groupId>edu.uci.ics.hyracks</groupId>
       <artifactId>hyracks-api</artifactId>
-      <version>${hyracks.version}</version>
     </dependency>
 
     <dependency>
       <groupId>edu.uci.ics.hyracks</groupId>
       <artifactId>hyracks-data-std</artifactId>
-      <version>${hyracks.version}</version>
     </dependency>
 
     <dependency>
       <groupId>edu.uci.ics.hyracks</groupId>
       <artifactId>hyracks-dataflow-common</artifactId>
-      <version>${hyracks.version}</version>
     </dependency>
 
     <dependency>
       <groupId>edu.uci.ics.hyracks</groupId>
       <artifactId>hyracks-dataflow-std</artifactId>
-      <version>${hyracks.version}</version>
     </dependency>
 
     <dependency>
       <groupId>ant</groupId>
       <artifactId>ant-trax</artifactId>
-      <version>1.6.5</version>
       <scope>provided</scope>
     </dependency>
 
     <dependency>
       <groupId>org.codehaus.woodstox</groupId>
       <artifactId>stax2-api</artifactId>
-      <version>3.0.1</version>
     </dependency>
 
     <dependency>
       <groupId>org.codehaus.woodstox</groupId>
       <artifactId>woodstox-core-asl</artifactId>
-      <version>4.0.6</version>
     </dependency>
 
     <dependency>
       <groupId>xalan</groupId>
       <artifactId>serializer</artifactId>
-      <version>2.7.1</version>
     </dependency>
 
     <dependency>
       <groupId>xerces</groupId>
       <artifactId>xercesImpl</artifactId>
-      <version>2.9.1</version>
     </dependency>
 
     <dependency>
       <groupId>activemq</groupId>
       <artifactId>activemq-transport-xstream</artifactId>
-      <version>2.1</version>
     </dependency>
 
     <dependency>
       <groupId>com.thoughtworks.xstream</groupId>
       <artifactId>xstream</artifactId>
-      <version>1.3.1</version>
     </dependency>
 
     <dependency>
       <groupId>commons-io</groupId>
       <artifactId>commons-io</artifactId>
-      <version>1.3.2</version>
     </dependency>
 
     <dependency>
       <groupId>commons-codec</groupId>
       <artifactId>commons-codec</artifactId>
-      <version>1.4</version>
     </dependency>
 
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>4.7</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/60152072/vxquery-server/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-server/pom.xml b/vxquery-server/pom.xml
index 34af2d4..9c1b15d 100644
--- a/vxquery-server/pom.xml
+++ b/vxquery-server/pom.xml
@@ -131,17 +131,11 @@
     <dependency>
       <groupId>edu.uci.ics.hyracks</groupId>
       <artifactId>hyracks-control-cc</artifactId>
-      <version>${hyracks.version}</version>
-      <type>jar</type>
-      <scope>compile</scope>
     </dependency>
     
     <dependency>
       <groupId>edu.uci.ics.hyracks</groupId>
       <artifactId>hyracks-control-nc</artifactId>
-      <version>${hyracks.version}</version>
-      <type>jar</type>
-      <scope>compile</scope>
     </dependency>
   </dependencies>
 

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/60152072/vxquery-xtest/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-xtest/pom.xml b/vxquery-xtest/pom.xml
index 04e06ff..d0836f2 100644
--- a/vxquery-xtest/pom.xml
+++ b/vxquery-xtest/pom.xml
@@ -89,23 +89,31 @@
     <dependency>
       <groupId>edu.uci.ics.hyracks</groupId>
       <artifactId>hyracks-api</artifactId>
-      <version>${hyracks.version}</version>
     </dependency>
+
+    <dependency>
+      <groupId>edu.uci.ics.hyracks</groupId>
+      <artifactId>hyracks-client</artifactId>
+    </dependency>
+
     <dependency>
       <groupId>edu.uci.ics.hyracks</groupId>
-      <artifactId>hyracks-control-common</artifactId>
-      <version>${hyracks.version}</version>
+      <artifactId>hyracks-control-cc</artifactId>
     </dependency>
+
+    <dependency>
+      <groupId>edu.uci.ics.hyracks</groupId>
+      <artifactId>hyracks-control-nc</artifactId>
+    </dependency>
+
     <dependency>
       <groupId>edu.uci.ics.hyracks</groupId>
       <artifactId>hyracks-dataflow-std</artifactId>
-      <version>${hyracks.version}</version>
     </dependency>
 
     <dependency>
       <groupId>org.mortbay.jetty</groupId>
       <artifactId>jetty</artifactId>
-      <version>6.1.4</version>
       <scope>compile</scope>
     </dependency>
   </dependencies>


[04/19] git commit: Merged in master

Posted by ti...@apache.org.
Merged in master


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

Branch: refs/heads/master
Commit: a5c8adff4e00826ff80a5e573ef9efe120624526
Parents: ad002b5 0df78c5
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Wed Apr 9 15:18:30 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Wed Apr 9 15:18:30 2014 -0700

----------------------------------------------------------------------
 .rat-excludes                                   |   4 +
 pom.xml                                         |  16 +-
 src/site/apt/development_eclipse_setup.apt      |  25 +-
 src/site/apt/development_tips.apt               |  40 +-
 src/site/apt/development_xml_node_details.apt   |  14 +-
 src/site/apt/user_query.apt                     |  26 +-
 src/site/apt/user_running_tests.apt             |   4 +-
 .../resources/noaa-ghcn-daily/queries/q00.xq    |  25 +-
 .../resources/noaa-ghcn-daily/queries/q01.xq    |  17 +
 .../resources/noaa-ghcn-daily/queries/q02.xq    |  20 +-
 .../resources/noaa-ghcn-daily/queries/q03.xq    |  17 +
 .../resources/noaa-ghcn-daily/queries/q04.xq    |  32 +-
 .../noaa-ghcn-daily/queries/q04_sensor.xq       |  27 +
 .../noaa-ghcn-daily/queries/q04_station.xq      |  25 +
 .../resources/noaa-ghcn-daily/queries/q05.xq    |  32 +-
 .../noaa-ghcn-daily/queries/q05_sensor.xq       |  28 +
 .../noaa-ghcn-daily/queries/q05_station.xq      |  25 +
 .../resources/noaa-ghcn-daily/queries/q06.xq    |  30 +
 .../noaa-ghcn-daily/queries/q06_sensor.xq       |  27 +
 .../noaa-ghcn-daily/queries/q06_station.xq      |  24 +
 .../resources/noaa-ghcn-daily/queries/q07.xq    |  33 +
 .../noaa-ghcn-daily/queries/q07_tmax.xq         |  26 +
 .../noaa-ghcn-daily/queries/q07_tmin.xq         |  26 +
 .../noaa-ghcn-daily/queries/q_test_00.xq        |   5 -
 .../noaa-ghcn-daily/queries/q_test_01.xq        |   6 -
 .../noaa-ghcn-daily/queries/q_test_02.xq        |   6 -
 .../noaa-ghcn-daily/queries/sensor_count.xq     |  24 +
 .../noaa-ghcn-daily/queries/station_count.xq    |  24 +
 .../resources/noaa-ghcn-daily/scripts/README.md |  17 +
 .../noaa-ghcn-daily/scripts/run_benchmark.sh    |  32 +-
 .../scripts/run_benchmark_cluster.sh            |  63 ++
 .../scripts/weather_benchmark.py                | 298 ++++++
 .../noaa-ghcn-daily/scripts/weather_cli.py      |  64 +-
 .../noaa-ghcn-daily/scripts/weather_config.py   |  27 +-
 .../scripts/weather_config_ghcnd.py             |  95 ++
 .../scripts/weather_config_mshr.py              |  78 ++
 .../scripts/weather_convert_to_xml.py           | 225 ++++-
 .../scripts/weather_data_files.py               | 127 ++-
 .../scripts/weather_dly_config.py               |  96 --
 .../scripts/weather_download_files.py           |  35 +-
 .../noaa-ghcn-daily/scripts/weather_example.xml |  17 +-
 .../scripts/weather_example_cluster.xml         |  56 ++
 .../src/main/resources/util/README.md           |  17 +
 .../main/resources/util/vxquery_functions.xq    |  17 +
 .../main/resources/util/vxquery_operators.xq    |  17 +
 .../java/org/apache/vxquery/cli/VXQuery.java    |  18 +-
 .../vxquery/compiler/CompilerControlBlock.java  |  14 +-
 .../VXQueryComparatorFactoryProvider.java       |   7 +-
 ...ueryLogicalExpressionPrettyPrintVisitor.java |  28 +-
 .../compiler/rewriter/RewriteRuleset.java       |  39 +-
 .../rewriter/VXQueryOptimizationContext.java    |  20 +-
 ...tractRemoveRedundantTypeExpressionsRule.java |   3 +-
 .../ConvertFromAlgebricksExpressionsRule.java   | 119 +++
 .../ConvertToAlgebricksExpressionsRule.java     | 124 +++
 .../rules/InlineNestedVariablesRule.java        |  97 ++
 .../rewriter/rules/IntroduceCollectionRule.java |   9 +-
 .../rules/IntroduceTwoStepAggregateRule.java    |  58 +-
 .../rules/PushFunctionsOntoEqJoinBranches.java  | 122 +++
 .../RemoveRedundantBooleanExpressionsRule.java  |  69 ++
 .../rules/SetCollectionDataSourceRule.java      |  23 +-
 .../rewriter/rules/util/ExpressionToolbox.java  |  36 +-
 .../accessors/atomic/XSDecimalPointable.java    |   4 +-
 .../DefaultSystemExceptionFactory.java          |  30 +-
 .../apache/vxquery/exceptions/ErrorCode.java    |  30 +-
 .../vxquery/exceptions/ErrorMessages.java       |  30 +-
 .../vxquery/exceptions/ErrorReporter.java       |  30 +-
 .../vxquery/exceptions/SystemException.java     |  30 +-
 .../exceptions/SystemExceptionFactory.java      |  30 +-
 .../exceptions/VXQueryDataException.java        |  41 +
 .../VXQueryFileNotFoundException.java           |  29 +
 .../exceptions/VXQueryParseException.java       |  29 +
 .../vxquery/exceptions/WarningReporter.java     |  30 +-
 .../vxquery/functions/builtin-operators.xml     |  14 +
 .../metadata/VXQueryCollectionDataSource.java   |  13 +-
 .../VXQueryCollectionOperatorDescriptor.java    |   9 +-
 .../metadata/VXQueryMetadataProvider.java       |  39 +-
 .../VXQueryRawBinaryHashFunctionFactory.java    |   4 +-
 ...AbstractMaxMinAggregateEvaluatorFactory.java |  39 +-
 .../AbstractMaxMinScalarEvaluatorFactory.java   |  25 +-
 .../AvgGlobalAggregateEvaluatorFactory.java     | 117 +++
 .../AvgLocalAggregateEvaluatorFactory.java      | 106 ++
 .../FnAvgAggregateEvaluatorFactory.java         |  24 +-
 .../aggregate/FnAvgScalarEvaluatorFactory.java  |   2 +-
 .../FnCountScalarEvaluatorFactory.java          |   2 +-
 .../FnSumAggregateEvaluatorFactory.java         |  40 +-
 .../aggregate/FnSumScalarEvaluatorFactory.java  |   2 +-
 .../bool/FnBooleanScalarEvaluatorFactory.java   |   2 +-
 .../misc/FnDataScalarEvaluatorFactory.java      |   2 +-
 .../ConcatenateScalarEvaluatorFactory.java      |   2 +-
 .../sequence/FnEmptyScalarEvaluatorFactory.java |   2 +-
 .../FnExactlyOneScalarEvaluatorFactory.java     |   2 +-
 .../FnExistsScalarEvaluatorFactory.java         |   2 +-
 .../FnInsertBeforeScalarEvaluatorFactory.java   |   4 +-
 .../FnOneOrMoreScalarEvaluatorFactory.java      |   2 +-
 .../FnRemoveScalarEvaluatorFactory.java         |   2 +-
 .../FnReverseScalarEvaluatorFactory.java        |   2 +-
 .../FnSubsequenceScalarEvaluatorFactory.java    |   2 +-
 .../FnZeroOrOneScalarEvaluatorFactory.java      |   2 +-
 .../IterateUnnestingEvaluatorFactory.java       |   5 +-
 .../SequenceAggregateEvaluatorFactory.java      |   2 +-
 .../strings/FnStringJoinEvaluatorFactory.java   |   2 +-
 .../runtime/functions/util/FunctionHelper.java  |  31 +-
 ...VXQueryBinaryHashFunctionFamilyProvider.java |  36 +
 .../vxquery/serializer/XMLSerializer.java       |  10 +-
 .../org/apache/vxquery/xmlparser/XMLParser.java |  26 +-
 .../xmlquery/query/XMLQueryCompiler.java        |  37 +-
 .../xmlquery/query/SimpleXQueryTest.java        |   2 +-
 .../src/main/resources/scripts/README.md        |  17 +
 .../main/resources/scripts/cluster_actions.py   |  26 +-
 .../src/main/resources/scripts/cluster_cli.py   |   2 +-
 .../src/main/resources/scripts/startcc.sh       |  17 +
 .../src/main/resources/scripts/startnc.sh       |  17 +
 .../src/main/resources/scripts/stopcc.sh        |  17 +
 .../src/main/resources/scripts/stopnc.sh        |  17 +
 vxquery-xtest/pom.xml                           |   8 +
 vxquery-xtest/results/README.md                 |  17 +
 vxquery-xtest/results/xqts.txt                  | 987 +++++++++++--------
 .../java/org/apache/vxquery/xtest/TestCase.java |   5 +
 .../apache/vxquery/xtest/TestCaseFactory.java   |  24 +-
 .../apache/vxquery/xtest/TestConfiguration.java |   6 +-
 .../apache/vxquery/xtest/TestRunnerFactory.java |   5 +-
 .../java/org/apache/vxquery/xtest/XTest.java    |   2 +-
 .../org/apache/vxquery/xtest/XTestOptions.java  |   4 +-
 .../Aggregate/Partition-1/avg.txt               |   1 +
 .../Aggregate/Partition-1/count.txt             |   1 +
 .../Aggregate/Partition-1/max.txt               |   1 +
 .../Aggregate/Partition-1/min.txt               |   1 +
 .../Aggregate/Partition-1/sum.txt               |   1 +
 .../Aggregate/Partition-2/avg.txt               |   1 +
 .../Aggregate/Partition-2/count.txt             |   1 +
 .../Aggregate/Partition-2/max.txt               |   1 +
 .../Aggregate/Partition-2/min.txt               |   1 +
 .../Aggregate/Partition-2/sum.txt               |   1 +
 .../Aggregate/Partition-4/avg.txt               |   1 +
 .../Aggregate/Partition-4/count.txt             |   1 +
 .../Aggregate/Partition-4/max.txt               |   1 +
 .../Aggregate/Partition-4/min.txt               |   1 +
 .../Aggregate/Partition-4/sum.txt               |   1 +
 .../Ghcnd/Partition-1/q00.txt                   |   2 +
 .../Ghcnd/Partition-1/q01.txt                   |   1 +
 .../Ghcnd/Partition-1/q02.txt                   |   1 +
 .../Ghcnd/Partition-1/q03.txt                   |   1 +
 .../Ghcnd/Partition-1/q04.txt                   |   3 +
 .../Ghcnd/Partition-1/q05.txt                   |   1 +
 .../Ghcnd/Partition-1/q06.txt                   |   3 +
 .../Ghcnd/Partition-1/q07.txt                   |   1 +
 .../Ghcnd/Partition-2/q00.txt                   |   2 +
 .../Ghcnd/Partition-2/q01.txt                   |   1 +
 .../Ghcnd/Partition-2/q02.txt                   |   1 +
 .../Ghcnd/Partition-2/q03.txt                   |   1 +
 .../Ghcnd/Partition-2/q04.txt                   |   3 +
 .../Ghcnd/Partition-2/q05.txt                   |   1 +
 .../Ghcnd/Partition-2/q06.txt                   |   3 +
 .../Ghcnd/Partition-2/q07.txt                   |   1 +
 .../Ghcnd/Partition-4/q00.txt                   |   2 +
 .../Ghcnd/Partition-4/q01.txt                   |   1 +
 .../Ghcnd/Partition-4/q02.txt                   |   1 +
 .../Ghcnd/Partition-4/q03.txt                   |   1 +
 .../Ghcnd/Partition-4/q04.txt                   |   3 +
 .../Ghcnd/Partition-4/q05.txt                   |   1 +
 .../Ghcnd/Partition-4/q06.txt                   |   3 +
 .../Ghcnd/Partition-4/q07.txt                   |   1 +
 .../GhcndCount/Partition-1/q02_count.txt        |   1 +
 .../GhcndCount/Partition-1/q03_count.txt        |   1 +
 .../GhcndCount/Partition-1/q05_count.txt        |   1 +
 .../GhcndCount/Partition-1/q07_count.txt        |   1 +
 .../GhcndCount/Partition-2/q02_count.txt        |   1 +
 .../GhcndCount/Partition-2/q03_count.txt        |   1 +
 .../GhcndCount/Partition-2/q05_count.txt        |   1 +
 .../GhcndCount/Partition-2/q07_count.txt        |   1 +
 .../GhcndCount/Partition-4/q02_count.txt        |   1 +
 .../GhcndCount/Partition-4/q03_count.txt        |   1 +
 .../GhcndCount/Partition-4/q05_count.txt        |   1 +
 .../GhcndCount/Partition-4/q07_count.txt        |   1 +
 .../GhcndRecords/Partition-1/q02_records.txt    |   1 +
 .../GhcndRecords/Partition-1/q03_records.txt    |   3 +
 .../GhcndRecords/Partition-1/q05_records.txt    |   1 +
 .../GhcndRecords/Partition-1/q07_records-1.txt  |   3 +
 .../GhcndRecords/Partition-1/q07_records-2.txt  |   3 +
 .../GhcndRecords/Partition-1/q07_records-3.txt  |   3 +
 .../GhcndRecords/Partition-1/q07_records-4.txt  |   3 +
 .../GhcndRecords/Partition-1/q07_records-5.txt  |   3 +
 .../GhcndRecords/Partition-1/q07_records.txt    |   3 +
 .../GhcndRecords/Partition-2/q02_records.txt    |   1 +
 .../GhcndRecords/Partition-2/q03_records.txt    |   3 +
 .../GhcndRecords/Partition-2/q05_records.txt    |   1 +
 .../GhcndRecords/Partition-2/q07_records-1.txt  |   3 +
 .../GhcndRecords/Partition-2/q07_records-2.txt  |   3 +
 .../GhcndRecords/Partition-2/q07_records-3.txt  |   3 +
 .../GhcndRecords/Partition-2/q07_records-4.txt  |   3 +
 .../GhcndRecords/Partition-2/q07_records-5.txt  |   3 +
 .../GhcndRecords/Partition-2/q07_records.txt    |   3 +
 .../GhcndRecords/Partition-4/q02_records.txt    |   1 +
 .../GhcndRecords/Partition-4/q03_records.txt    |   3 +
 .../GhcndRecords/Partition-4/q05_records.txt    |   1 +
 .../GhcndRecords/Partition-4/q07_records-1.txt  |   3 +
 .../GhcndRecords/Partition-4/q07_records-2.txt  |   3 +
 .../GhcndRecords/Partition-4/q07_records-3.txt  |   3 +
 .../GhcndRecords/Partition-4/q07_records-4.txt  |   3 +
 .../GhcndRecords/Partition-4/q07_records-5.txt  |   3 +
 .../GhcndRecords/Partition-4/q07_records.txt    |   3 +
 .../Queries/XQuery/Aggregate/Partition-1/avg.xq |  25 +
 .../XQuery/Aggregate/Partition-1/count.xq       |  25 +
 .../Queries/XQuery/Aggregate/Partition-1/max.xq |  25 +
 .../Queries/XQuery/Aggregate/Partition-1/min.xq |  25 +
 .../Queries/XQuery/Aggregate/Partition-1/sum.xq |  25 +
 .../Queries/XQuery/Aggregate/Partition-2/avg.xq |  25 +
 .../XQuery/Aggregate/Partition-2/count.xq       |  25 +
 .../Queries/XQuery/Aggregate/Partition-2/max.xq |  25 +
 .../Queries/XQuery/Aggregate/Partition-2/min.xq |  25 +
 .../Queries/XQuery/Aggregate/Partition-2/sum.xq |  25 +
 .../Queries/XQuery/Aggregate/Partition-4/avg.xq |  25 +
 .../XQuery/Aggregate/Partition-4/count.xq       |  25 +
 .../Queries/XQuery/Aggregate/Partition-4/max.xq |  25 +
 .../Queries/XQuery/Aggregate/Partition-4/min.xq |  25 +
 .../Queries/XQuery/Aggregate/Partition-4/sum.xq |  25 +
 .../Queries/XQuery/Ghcnd/Partition-1/q00.xq     |  28 +
 .../Queries/XQuery/Ghcnd/Partition-1/q01.xq     |  25 +
 .../Queries/XQuery/Ghcnd/Partition-1/q02.xq     |  28 +
 .../Queries/XQuery/Ghcnd/Partition-1/q03.xq     |  25 +
 .../Queries/XQuery/Ghcnd/Partition-1/q04.xq     |  30 +
 .../XQuery/Ghcnd/Partition-1/q04_sensors.xq     |  25 +
 .../XQuery/Ghcnd/Partition-1/q04_stations.xq    |  25 +
 .../Queries/XQuery/Ghcnd/Partition-1/q05.xq     |  33 +
 .../Queries/XQuery/Ghcnd/Partition-1/q06.xq     |  30 +
 .../Queries/XQuery/Ghcnd/Partition-1/q07.xq     |  33 +
 .../Queries/XQuery/Ghcnd/Partition-2/q00.xq     |  28 +
 .../Queries/XQuery/Ghcnd/Partition-2/q01.xq     |  25 +
 .../Queries/XQuery/Ghcnd/Partition-2/q02.xq     |  28 +
 .../Queries/XQuery/Ghcnd/Partition-2/q03.xq     |  25 +
 .../Queries/XQuery/Ghcnd/Partition-2/q04.xq     |  30 +
 .../Queries/XQuery/Ghcnd/Partition-2/q05.xq     |  33 +
 .../Queries/XQuery/Ghcnd/Partition-2/q06.xq     |  30 +
 .../Queries/XQuery/Ghcnd/Partition-2/q07.xq     |  33 +
 .../Queries/XQuery/Ghcnd/Partition-4/q00.xq     |  28 +
 .../Queries/XQuery/Ghcnd/Partition-4/q01.xq     |  25 +
 .../Queries/XQuery/Ghcnd/Partition-4/q02.xq     |  28 +
 .../Queries/XQuery/Ghcnd/Partition-4/q03.xq     |  25 +
 .../Queries/XQuery/Ghcnd/Partition-4/q04.xq     |  30 +
 .../Queries/XQuery/Ghcnd/Partition-4/q05.xq     |  33 +
 .../Queries/XQuery/Ghcnd/Partition-4/q06.xq     |  30 +
 .../Queries/XQuery/Ghcnd/Partition-4/q07.xq     |  33 +
 .../XQuery/GhcndCount/Partition-1/q02_count.xq  |  28 +
 .../XQuery/GhcndCount/Partition-1/q03_count.xq  |  25 +
 .../XQuery/GhcndCount/Partition-1/q05_count.xq  |  33 +
 .../XQuery/GhcndCount/Partition-1/q07_count.xq  |  33 +
 .../XQuery/GhcndCount/Partition-2/q02_count.xq  |  28 +
 .../XQuery/GhcndCount/Partition-2/q03_count.xq  |  25 +
 .../XQuery/GhcndCount/Partition-2/q05_count.xq  |  33 +
 .../XQuery/GhcndCount/Partition-2/q07_count.xq  |  33 +
 .../XQuery/GhcndCount/Partition-4/q02_count.xq  |  28 +
 .../XQuery/GhcndCount/Partition-4/q03_count.xq  |  25 +
 .../XQuery/GhcndCount/Partition-4/q05_count.xq  |  33 +
 .../XQuery/GhcndCount/Partition-4/q07_count.xq  |  33 +
 .../GhcndRecords/Partition-1/q02_records.xq     |  26 +
 .../GhcndRecords/Partition-1/q03_records.xq     |  23 +
 .../GhcndRecords/Partition-1/q05_records.xq     |  31 +
 .../GhcndRecords/Partition-1/q07_records.xq     |  31 +
 .../GhcndRecords/Partition-2/q02_records.xq     |  26 +
 .../GhcndRecords/Partition-2/q03_records.xq     |  23 +
 .../GhcndRecords/Partition-2/q05_records.xq     |  31 +
 .../GhcndRecords/Partition-2/q07_records.xq     |  31 +
 .../GhcndRecords/Partition-4/q02_records.xq     |  26 +
 .../GhcndRecords/Partition-4/q03_records.xq     |  23 +
 .../GhcndRecords/Partition-4/q05_records.xq     |  31 +
 .../GhcndRecords/Partition-4/q07_records.xq     |  31 +
 .../quarter_1/sensors/US000000001_200101_0.xml  |  18 +
 .../half_1/quarter_1/stations/US000000001.xml   |  18 +
 .../quarter_2/sensors/US000000002_200202_0.xml  |  18 +
 .../half_1/quarter_2/stations/US000000004.xml   |  18 +
 .../quarter_3/sensors/AS000000003_200303_0.xml  |  18 +
 .../half_2/quarter_3/stations/US000000002.xml   |  18 +
 .../quarter_4/sensors/US000000004_200404_0.xml  |  18 +
 .../half_2/quarter_4/stations/AS000000003.xml   |  18 +
 .../src/test/resources/VXQueryCatalog.xml       | 141 +++
 .../cat/AggregatePartition1Queries.xml          |  48 +
 .../cat/AggregatePartition2Queries.xml          |  48 +
 .../cat/AggregatePartition4Queries.xml          |  48 +
 .../cat/GhcndCountPartition1Queries.xml         |  43 +
 .../cat/GhcndCountPartition2Queries.xml         |  43 +
 .../cat/GhcndCountPartition4Queries.xml         |  43 +
 .../resources/cat/GhcndPartition1Queries.xml    |  63 ++
 .../resources/cat/GhcndPartition2Queries.xml    |  63 ++
 .../resources/cat/GhcndPartition4Queries.xml    |  63 ++
 .../cat/GhcndRecordsPartition1Queries.xml       |  48 +
 .../cat/GhcndRecordsPartition2Queries.xml       |  48 +
 .../cat/GhcndRecordsPartition4Queries.xml       |  48 +
 287 files changed, 6535 insertions(+), 1074 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/a5c8adff/pom.xml
----------------------------------------------------------------------
diff --cc pom.xml
index 0597245,6f711ec..1c0ac97
--- a/pom.xml
+++ b/pom.xml
@@@ -45,11 -45,11 +45,11 @@@
        <comments>A business-friendly OSS license</comments>
      </license>
    </licenses>
 -  
 +
    <scm>
-     <connection>scm:svn:https://svn.apache.org/repos/asf/incubator/vxquery</connection>
-     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/vxquery/branches/vxquery_0_2_staging</developerConnection>
-     <url>https://svn.apache.org/repos/asf/incubator/vxquery</url>
+     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</connection>
+     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</developerConnection>
+     <url>https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</url>
    </scm>
  
    <issueManagement>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/a5c8adff/vxquery-xtest/pom.xml
----------------------------------------------------------------------


[10/19] git commit: Revert "[maven-release-plugin] prepare release apache-vxquery-0.3-incubating"

Posted by ti...@apache.org.
Revert "[maven-release-plugin] prepare release apache-vxquery-0.3-incubating"

This reverts commit b2e1eb5cc5a2c52c55dc736360637eb07258b7fd.


Project: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/commit/76b32d08
Tree: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/tree/76b32d08
Diff: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/diff/76b32d08

Branch: refs/heads/master
Commit: 76b32d08b757ea1fe48b19f7f019accc6acfe94f
Parents: 4f679c7
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Thu Apr 10 02:37:38 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Thu Apr 10 02:37:38 2014 -0700

----------------------------------------------------------------------
 pom.xml                   | 3 +--
 vxquery-benchmark/pom.xml | 5 +++--
 vxquery-cli/pom.xml       | 4 ++--
 vxquery-core/pom.xml      | 6 +++---
 vxquery-server/pom.xml    | 7 ++++---
 vxquery-xtest/pom.xml     | 4 ++--
 6 files changed, 15 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/76b32d08/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b60f3ab..6d70006 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
 
   <groupId>org.apache.vxquery</groupId>
   <artifactId>apache-vxquery</artifactId>
-  <version>0.3-incubating</version>
+  <version>0.3-incubating-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>VXQuery</name>
   <description>A Versatile XQuery Processor</description>
@@ -50,7 +50,6 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</developerConnection>
     <url>https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</url>
-    <tag>apache-vxquery-0.3-incubating</tag>
   </scm>
 
   <issueManagement>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/76b32d08/vxquery-benchmark/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-benchmark/pom.xml b/vxquery-benchmark/pom.xml
index a909a78..818977f 100644
--- a/vxquery-benchmark/pom.xml
+++ b/vxquery-benchmark/pom.xml
@@ -14,13 +14,14 @@
   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>
   
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.3-incubating-SNAPSHOT</version>
   </parent>
   
   <artifactId>apache-vxquery-benchmark</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/76b32d08/vxquery-cli/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-cli/pom.xml b/vxquery-cli/pom.xml
index 58631b8..a7a51df 100644
--- a/vxquery-cli/pom.xml
+++ b/vxquery-cli/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.3-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-cli</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating</version>
+      <version>0.3-incubating-SNAPSHOT</version>
       <scope>compile</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/76b32d08/vxquery-core/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-core/pom.xml b/vxquery-core/pom.xml
index bc64f9b..5a0dfdd 100644
--- a/vxquery-core/pom.xml
+++ b/vxquery-core/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.3-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-core</artifactId>
@@ -148,7 +148,7 @@
                     </goals>
                   </pluginExecutionFilter>
                   <action>
-                    <ignore />
+                    <ignore></ignore>
                   </action>
                 </pluginExecution>
                 <pluginExecution>
@@ -161,7 +161,7 @@
                     </goals>
                   </pluginExecutionFilter>
                   <action>
-                    <ignore />
+                    <ignore></ignore>
                   </action>
                 </pluginExecution>
               </pluginExecutions>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/76b32d08/vxquery-server/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-server/pom.xml b/vxquery-server/pom.xml
index 47665bb..9c1b15d 100644
--- a/vxquery-server/pom.xml
+++ b/vxquery-server/pom.xml
@@ -14,13 +14,14 @@
   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>
 
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.3-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-server</artifactId>
@@ -124,7 +125,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating</version>
+      <version>0.3-incubating-SNAPSHOT</version>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/76b32d08/vxquery-xtest/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-xtest/pom.xml b/vxquery-xtest/pom.xml
index 76db7d9..cb048e7 100644
--- a/vxquery-xtest/pom.xml
+++ b/vxquery-xtest/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.3-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-xtest</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating</version>
+      <version>0.3-incubating-SNAPSHOT</version>
     </dependency>
 
     <dependency>


[05/19] git commit: Upgraded maven release plugin to 2.4.2

Posted by ti...@apache.org.
Upgraded maven release plugin to 2.4.2


Project: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/commit/7b808a55
Tree: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/tree/7b808a55
Diff: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/diff/7b808a55

Branch: refs/heads/master
Commit: 7b808a55c128893c36f218c38104c386e1f56472
Parents: a5c8adf
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Wed Apr 9 16:34:23 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Wed Apr 9 16:34:23 2014 -0700

----------------------------------------------------------------------
 pom.xml | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/7b808a55/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 1c0ac97..6713d5f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -432,6 +432,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-release-plugin</artifactId>
+        <version>2.4.2</version>
         <configuration>
           <autoVersionSubmodules>true</autoVersionSubmodules>
         </configuration>


[11/19] git commit: [maven-release-plugin] prepare release apache-vxquery-0.3-incubating

Posted by ti...@apache.org.
[maven-release-plugin] prepare release apache-vxquery-0.3-incubating


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

Branch: refs/heads/master
Commit: a15ad180e2dc79830404b6bf949d964a129adfb5
Parents: 76b32d0
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Thu Apr 10 02:39:21 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Thu Apr 10 02:39:21 2014 -0700

----------------------------------------------------------------------
 pom.xml                   | 3 ++-
 vxquery-benchmark/pom.xml | 5 ++---
 vxquery-cli/pom.xml       | 4 ++--
 vxquery-core/pom.xml      | 6 +++---
 vxquery-server/pom.xml    | 7 +++----
 vxquery-xtest/pom.xml     | 4 ++--
 6 files changed, 14 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/a15ad180/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 6d70006..b60f3ab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
 
   <groupId>org.apache.vxquery</groupId>
   <artifactId>apache-vxquery</artifactId>
-  <version>0.3-incubating-SNAPSHOT</version>
+  <version>0.3-incubating</version>
   <packaging>pom</packaging>
   <name>VXQuery</name>
   <description>A Versatile XQuery Processor</description>
@@ -50,6 +50,7 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</developerConnection>
     <url>https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</url>
+    <tag>apache-vxquery-0.3-incubating</tag>
   </scm>
 
   <issueManagement>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/a15ad180/vxquery-benchmark/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-benchmark/pom.xml b/vxquery-benchmark/pom.xml
index 818977f..a909a78 100644
--- a/vxquery-benchmark/pom.xml
+++ b/vxquery-benchmark/pom.xml
@@ -14,14 +14,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>
   
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
   
   <artifactId>apache-vxquery-benchmark</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/a15ad180/vxquery-cli/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-cli/pom.xml b/vxquery-cli/pom.xml
index a7a51df..58631b8 100644
--- a/vxquery-cli/pom.xml
+++ b/vxquery-cli/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-cli</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating-SNAPSHOT</version>
+      <version>0.3-incubating</version>
       <scope>compile</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/a15ad180/vxquery-core/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-core/pom.xml b/vxquery-core/pom.xml
index 5a0dfdd..bc64f9b 100644
--- a/vxquery-core/pom.xml
+++ b/vxquery-core/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-core</artifactId>
@@ -148,7 +148,7 @@
                     </goals>
                   </pluginExecutionFilter>
                   <action>
-                    <ignore></ignore>
+                    <ignore />
                   </action>
                 </pluginExecution>
                 <pluginExecution>
@@ -161,7 +161,7 @@
                     </goals>
                   </pluginExecutionFilter>
                   <action>
-                    <ignore></ignore>
+                    <ignore />
                   </action>
                 </pluginExecution>
               </pluginExecutions>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/a15ad180/vxquery-server/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-server/pom.xml b/vxquery-server/pom.xml
index 9c1b15d..47665bb 100644
--- a/vxquery-server/pom.xml
+++ b/vxquery-server/pom.xml
@@ -14,14 +14,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>
 
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-server</artifactId>
@@ -125,7 +124,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating-SNAPSHOT</version>
+      <version>0.3-incubating</version>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/a15ad180/vxquery-xtest/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-xtest/pom.xml b/vxquery-xtest/pom.xml
index cb048e7..76db7d9 100644
--- a/vxquery-xtest/pom.xml
+++ b/vxquery-xtest/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-xtest</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating-SNAPSHOT</version>
+      <version>0.3-incubating</version>
     </dependency>
 
     <dependency>


[12/19] git commit: [maven-release-plugin] prepare for next development iteration

Posted by ti...@apache.org.
[maven-release-plugin] prepare for next development iteration


Project: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/commit/32ea08c5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/tree/32ea08c5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/diff/32ea08c5

Branch: refs/heads/master
Commit: 32ea08c5d17675d36b907e14dcb76d9eaa028dc8
Parents: a15ad18
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Thu Apr 10 02:39:25 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Thu Apr 10 02:39:25 2014 -0700

----------------------------------------------------------------------
 pom.xml                   | 4 ++--
 vxquery-benchmark/pom.xml | 2 +-
 vxquery-cli/pom.xml       | 4 ++--
 vxquery-core/pom.xml      | 2 +-
 vxquery-server/pom.xml    | 4 ++--
 vxquery-xtest/pom.xml     | 4 ++--
 6 files changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/32ea08c5/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b60f3ab..6a02224 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
 
   <groupId>org.apache.vxquery</groupId>
   <artifactId>apache-vxquery</artifactId>
-  <version>0.3-incubating</version>
+  <version>0.4-incubating-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>VXQuery</name>
   <description>A Versatile XQuery Processor</description>
@@ -50,7 +50,7 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</developerConnection>
     <url>https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</url>
-    <tag>apache-vxquery-0.3-incubating</tag>
+    <tag>HEAD</tag>
   </scm>
 
   <issueManagement>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/32ea08c5/vxquery-benchmark/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-benchmark/pom.xml b/vxquery-benchmark/pom.xml
index a909a78..4098d6a 100644
--- a/vxquery-benchmark/pom.xml
+++ b/vxquery-benchmark/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.4-incubating-SNAPSHOT</version>
   </parent>
   
   <artifactId>apache-vxquery-benchmark</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/32ea08c5/vxquery-cli/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-cli/pom.xml b/vxquery-cli/pom.xml
index 58631b8..dc21cdf 100644
--- a/vxquery-cli/pom.xml
+++ b/vxquery-cli/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.4-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-cli</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating</version>
+      <version>0.4-incubating-SNAPSHOT</version>
       <scope>compile</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/32ea08c5/vxquery-core/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-core/pom.xml b/vxquery-core/pom.xml
index bc64f9b..496efdc 100644
--- a/vxquery-core/pom.xml
+++ b/vxquery-core/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.4-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-core</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/32ea08c5/vxquery-server/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-server/pom.xml b/vxquery-server/pom.xml
index 47665bb..92e6aba 100644
--- a/vxquery-server/pom.xml
+++ b/vxquery-server/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.4-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-server</artifactId>
@@ -124,7 +124,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating</version>
+      <version>0.4-incubating-SNAPSHOT</version>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/32ea08c5/vxquery-xtest/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-xtest/pom.xml b/vxquery-xtest/pom.xml
index 76db7d9..e69ca77 100644
--- a/vxquery-xtest/pom.xml
+++ b/vxquery-xtest/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.4-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-xtest</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating</version>
+      <version>0.4-incubating-SNAPSHOT</version>
     </dependency>
 
     <dependency>


[08/19] git commit: [maven-release-plugin] prepare for next development iteration

Posted by ti...@apache.org.
[maven-release-plugin] prepare for next development iteration


Project: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/commit/9249ebae
Tree: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/tree/9249ebae
Diff: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/diff/9249ebae

Branch: refs/heads/master
Commit: 9249ebae856bbf2bc9e5d32d9a1932e051e2310f
Parents: b2e1eb5
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Wed Apr 9 16:44:52 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Wed Apr 9 16:44:52 2014 -0700

----------------------------------------------------------------------
 pom.xml                   | 4 ++--
 vxquery-benchmark/pom.xml | 2 +-
 vxquery-cli/pom.xml       | 4 ++--
 vxquery-core/pom.xml      | 2 +-
 vxquery-server/pom.xml    | 4 ++--
 vxquery-xtest/pom.xml     | 4 ++--
 6 files changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/9249ebae/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b60f3ab..6a02224 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
 
   <groupId>org.apache.vxquery</groupId>
   <artifactId>apache-vxquery</artifactId>
-  <version>0.3-incubating</version>
+  <version>0.4-incubating-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>VXQuery</name>
   <description>A Versatile XQuery Processor</description>
@@ -50,7 +50,7 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</developerConnection>
     <url>https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</url>
-    <tag>apache-vxquery-0.3-incubating</tag>
+    <tag>HEAD</tag>
   </scm>
 
   <issueManagement>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/9249ebae/vxquery-benchmark/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-benchmark/pom.xml b/vxquery-benchmark/pom.xml
index a909a78..4098d6a 100644
--- a/vxquery-benchmark/pom.xml
+++ b/vxquery-benchmark/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.4-incubating-SNAPSHOT</version>
   </parent>
   
   <artifactId>apache-vxquery-benchmark</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/9249ebae/vxquery-cli/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-cli/pom.xml b/vxquery-cli/pom.xml
index 58631b8..dc21cdf 100644
--- a/vxquery-cli/pom.xml
+++ b/vxquery-cli/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.4-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-cli</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating</version>
+      <version>0.4-incubating-SNAPSHOT</version>
       <scope>compile</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/9249ebae/vxquery-core/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-core/pom.xml b/vxquery-core/pom.xml
index bc64f9b..496efdc 100644
--- a/vxquery-core/pom.xml
+++ b/vxquery-core/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.4-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-core</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/9249ebae/vxquery-server/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-server/pom.xml b/vxquery-server/pom.xml
index 47665bb..92e6aba 100644
--- a/vxquery-server/pom.xml
+++ b/vxquery-server/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.4-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-server</artifactId>
@@ -124,7 +124,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating</version>
+      <version>0.4-incubating-SNAPSHOT</version>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/9249ebae/vxquery-xtest/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-xtest/pom.xml b/vxquery-xtest/pom.xml
index 76db7d9..e69ca77 100644
--- a/vxquery-xtest/pom.xml
+++ b/vxquery-xtest/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.4-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-xtest</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating</version>
+      <version>0.4-incubating-SNAPSHOT</version>
     </dependency>
 
     <dependency>


[06/19] git commit: Added plugin dependency to fix git release issue

Posted by ti...@apache.org.
Added plugin dependency to fix git release issue


Project: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/commit/0bc9812d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/tree/0bc9812d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/diff/0bc9812d

Branch: refs/heads/master
Commit: 0bc9812dd5bfbb344990a48151b437ea8611434a
Parents: 7b808a5
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Wed Apr 9 16:42:10 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Wed Apr 9 16:42:10 2014 -0700

----------------------------------------------------------------------
 pom.xml | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/0bc9812d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 6713d5f..6d70006 100644
--- a/pom.xml
+++ b/pom.xml
@@ -433,6 +433,13 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-release-plugin</artifactId>
         <version>2.4.2</version>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.maven.scm</groupId>
+            <artifactId>maven-scm-provider-gitexe</artifactId>
+            <version>1.8.1</version>
+          </dependency>
+        </dependencies>
         <configuration>
           <autoVersionSubmodules>true</autoVersionSubmodules>
         </configuration>


[03/19] git commit: Added comments to the POM

Posted by ti...@apache.org.
Added comments to the POM


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

Branch: refs/heads/master
Commit: ad002b58d293e2dfb7712b9f26d22e3794d56946
Parents: c1871e5
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Tue Apr 1 12:48:39 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Tue Apr 1 12:48:39 2014 -0700

----------------------------------------------------------------------
 pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/ad002b58/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 35109e0..0597245 100644
--- a/pom.xml
+++ b/pom.xml
@@ -475,13 +475,19 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-assembly-plugin</artifactId>
+        <!-- We override the configuration plugin to override the descriptor to use for building
+          the source release zip. Specifically, we would like to control the inclusions/exclusions.
+          For example, we exclude the KEYS file from the zip -->
         <executions>
           <execution>
+            <!-- Use this id to match the id mentioned in the assembly plugin configuration in
+              the apache parent POM under the apache-release profile -->
             <id>source-release-assembly</id>
             <phase>package</phase>
             <goals>
               <goal>single</goal>
             </goals>
+            <!-- combine.self should be override to replace the configuration in the parent POM -->
             <configuration combine.self="override">
               <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
               <descriptors>


[17/19] git commit: [maven-release-plugin] prepare for next development iteration

Posted by ti...@apache.org.
[maven-release-plugin] prepare for next development iteration


Project: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/commit/40328aed
Tree: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/tree/40328aed
Diff: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/diff/40328aed

Branch: refs/heads/master
Commit: 40328aeddc0e3f4148f9e1ec4cd46616fc361839
Parents: 8bcba7b
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Thu Apr 10 10:07:33 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Thu Apr 10 10:07:33 2014 -0700

----------------------------------------------------------------------
 pom.xml                   | 4 ++--
 vxquery-benchmark/pom.xml | 2 +-
 vxquery-cli/pom.xml       | 4 ++--
 vxquery-core/pom.xml      | 2 +-
 vxquery-server/pom.xml    | 4 ++--
 vxquery-xtest/pom.xml     | 4 ++--
 6 files changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/40328aed/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b60f3ab..6a02224 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
 
   <groupId>org.apache.vxquery</groupId>
   <artifactId>apache-vxquery</artifactId>
-  <version>0.3-incubating</version>
+  <version>0.4-incubating-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>VXQuery</name>
   <description>A Versatile XQuery Processor</description>
@@ -50,7 +50,7 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</developerConnection>
     <url>https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</url>
-    <tag>apache-vxquery-0.3-incubating</tag>
+    <tag>HEAD</tag>
   </scm>
 
   <issueManagement>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/40328aed/vxquery-benchmark/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-benchmark/pom.xml b/vxquery-benchmark/pom.xml
index a909a78..4098d6a 100644
--- a/vxquery-benchmark/pom.xml
+++ b/vxquery-benchmark/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.4-incubating-SNAPSHOT</version>
   </parent>
   
   <artifactId>apache-vxquery-benchmark</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/40328aed/vxquery-cli/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-cli/pom.xml b/vxquery-cli/pom.xml
index 58631b8..dc21cdf 100644
--- a/vxquery-cli/pom.xml
+++ b/vxquery-cli/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.4-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-cli</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating</version>
+      <version>0.4-incubating-SNAPSHOT</version>
       <scope>compile</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/40328aed/vxquery-core/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-core/pom.xml b/vxquery-core/pom.xml
index bc64f9b..496efdc 100644
--- a/vxquery-core/pom.xml
+++ b/vxquery-core/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.4-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-core</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/40328aed/vxquery-server/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-server/pom.xml b/vxquery-server/pom.xml
index 47665bb..92e6aba 100644
--- a/vxquery-server/pom.xml
+++ b/vxquery-server/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.4-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-server</artifactId>
@@ -124,7 +124,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating</version>
+      <version>0.4-incubating-SNAPSHOT</version>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/40328aed/vxquery-xtest/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-xtest/pom.xml b/vxquery-xtest/pom.xml
index 76db7d9..e69ca77 100644
--- a/vxquery-xtest/pom.xml
+++ b/vxquery-xtest/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.4-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-xtest</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating</version>
+      <version>0.4-incubating-SNAPSHOT</version>
     </dependency>
 
     <dependency>


[09/19] git commit: Revert "[maven-release-plugin] prepare for next development iteration"

Posted by ti...@apache.org.
Revert "[maven-release-plugin] prepare for next development iteration"

This reverts commit 9249ebae856bbf2bc9e5d32d9a1932e051e2310f.


Project: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/commit/4f679c7d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/tree/4f679c7d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/diff/4f679c7d

Branch: refs/heads/master
Commit: 4f679c7d2f813eaaf9e5ee148d0c7d23ec233490
Parents: 9249eba
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Thu Apr 10 02:37:32 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Thu Apr 10 02:37:32 2014 -0700

----------------------------------------------------------------------
 pom.xml                   | 4 ++--
 vxquery-benchmark/pom.xml | 2 +-
 vxquery-cli/pom.xml       | 4 ++--
 vxquery-core/pom.xml      | 2 +-
 vxquery-server/pom.xml    | 4 ++--
 vxquery-xtest/pom.xml     | 4 ++--
 6 files changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/4f679c7d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 6a02224..b60f3ab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
 
   <groupId>org.apache.vxquery</groupId>
   <artifactId>apache-vxquery</artifactId>
-  <version>0.4-incubating-SNAPSHOT</version>
+  <version>0.3-incubating</version>
   <packaging>pom</packaging>
   <name>VXQuery</name>
   <description>A Versatile XQuery Processor</description>
@@ -50,7 +50,7 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</developerConnection>
     <url>https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</url>
-    <tag>HEAD</tag>
+    <tag>apache-vxquery-0.3-incubating</tag>
   </scm>
 
   <issueManagement>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/4f679c7d/vxquery-benchmark/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-benchmark/pom.xml b/vxquery-benchmark/pom.xml
index 4098d6a..a909a78 100644
--- a/vxquery-benchmark/pom.xml
+++ b/vxquery-benchmark/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.4-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
   
   <artifactId>apache-vxquery-benchmark</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/4f679c7d/vxquery-cli/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-cli/pom.xml b/vxquery-cli/pom.xml
index dc21cdf..58631b8 100644
--- a/vxquery-cli/pom.xml
+++ b/vxquery-cli/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.4-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-cli</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.4-incubating-SNAPSHOT</version>
+      <version>0.3-incubating</version>
       <scope>compile</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/4f679c7d/vxquery-core/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-core/pom.xml b/vxquery-core/pom.xml
index 496efdc..bc64f9b 100644
--- a/vxquery-core/pom.xml
+++ b/vxquery-core/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.4-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-core</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/4f679c7d/vxquery-server/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-server/pom.xml b/vxquery-server/pom.xml
index 92e6aba..47665bb 100644
--- a/vxquery-server/pom.xml
+++ b/vxquery-server/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.4-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-server</artifactId>
@@ -124,7 +124,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.4-incubating-SNAPSHOT</version>
+      <version>0.3-incubating</version>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/4f679c7d/vxquery-xtest/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-xtest/pom.xml b/vxquery-xtest/pom.xml
index e69ca77..76db7d9 100644
--- a/vxquery-xtest/pom.xml
+++ b/vxquery-xtest/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.4-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-xtest</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.4-incubating-SNAPSHOT</version>
+      <version>0.3-incubating</version>
     </dependency>
 
     <dependency>


[15/19] git commit: Updated binary assembly to package vxquery-xtest/results

Posted by ti...@apache.org.
Updated binary assembly to package vxquery-xtest/results


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

Branch: refs/heads/master
Commit: e5485e802e71902ab6b368d8c34b83bf2dfe5075
Parents: 41c3d10
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Thu Apr 10 10:03:41 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Thu Apr 10 10:03:41 2014 -0700

----------------------------------------------------------------------
 src/main/assembly/source.xml | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/e5485e80/src/main/assembly/source.xml
----------------------------------------------------------------------
diff --git a/src/main/assembly/source.xml b/src/main/assembly/source.xml
index 350d064..435cea5 100644
--- a/src/main/assembly/source.xml
+++ b/src/main/assembly/source.xml
@@ -32,6 +32,7 @@
         <include>**/NOTICE</include>
         <include>**/README</include>
         <include>**/src/**</include>
+        <include>**/results/**</include>
         <include>**/pom.xml</include>
         <include>**/build*.xml</include>
         <include>**/findbugs*.xml</include>


[18/19] git commit: update site - add release instructions - change site deployment directory to ../site

Posted by ti...@apache.org.
update site
- add release instructions
- change site deployment directory to ../site


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

Branch: refs/heads/master
Commit: d9853267df8c7463f3fa5fe00c1697244d1c7071
Parents: 8bcba7b
Author: Till Westmann <we...@gmail.com>
Authored: Mon Apr 21 22:29:08 2014 -0700
Committer: Till Westmann <we...@gmail.com>
Committed: Mon Apr 21 22:29:08 2014 -0700

----------------------------------------------------------------------
 pom.xml                  |   2 +-
 src/site/apt/release.apt | 164 ++++++++++++++++++++++++++++++++++++++++++
 src/site/site.xml        |   1 +
 3 files changed, 166 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/d9853267/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b60f3ab..bec5a28 100644
--- a/pom.xml
+++ b/pom.xml
@@ -198,7 +198,7 @@
     <site>
       <id>vxquery.website</id>
       <name>VXQuery Website</name>
-      <url>file:../../site/</url>
+      <url>file:../site/</url>
     </site>
   </distributionManagement>
 

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/d9853267/src/site/apt/release.apt
----------------------------------------------------------------------
diff --git a/src/site/apt/release.apt b/src/site/apt/release.apt
new file mode 100644
index 0000000..0ceb907
--- /dev/null
+++ b/src/site/apt/release.apt
@@ -0,0 +1,164 @@
+~~ Licensed to the Apache Software Foundation (ASF) under one or more
+~~ contributor license agreements.  See the NOTICE file distributed with
+~~ this work for additional information regarding copyright ownership.
+~~ The ASF licenses this file to You under the Apache License, Version 2.0
+~~ (the "License"); you may not use this file except in compliance with
+~~ the License.  You may obtain a copy of the License at
+~~
+~~     http://www.apache.org/licenses/LICENSE-2.0
+~~
+~~ Unless required by applicable law or agreed to in writing, software
+~~ distributed under the License is distributed on an "AS IS" BASIS,
+~~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+~~ See the License for the specific language governing permissions and
+~~ limitations under the License.
+
+Releasing Apache VXQuery
+
+* One time steps
+
+  * add your key to the <<<KEYS>>> file
+
+---
+(gpg --list-sigs <your name> && gpg2 --armor --export <your name>) >> KEYS
+---
+
+  * check the new <<<KEYS>>> file into the VXQuery distribution directory
+
+---
+$ svn co https://dist.apache.org/repos/dist/release/incubator/vxquery
+$ cd vxquery
+$ cp [path to KEYS file] .
+$ svn ci -m "add [YOUR NAME]'s key to KEYS file"
+---
+
+  * create an encrypted version of your Apache LDAP password for the nexus repository at {{{https://repository.apache.org/}https://repository.apache.org/}}
+
+    Follow the steps in the {{{http://maven.apache.org/guides/mini/guide-encryption.html}Password Encryption}}
+    guide to encrypt a master password and to encrypt your Apache LDAP password.
+    (It's nicer if you have maven > 3.2.1 to do this.)
+
+  * add to <<<~/.m2/settings.xml>>>
+
+    * for the upload to the nexus repository
+
+---
+  <servers>
+    <!-- To publish a snapshot of some part of Maven -->
+    <server>
+      <id>apache.snapshots.https</id>
+      <username>[YOUR APACHE LDAP USERNAME]</username>
+      <password>[YOUR APACHE LDAP PASSWORD] (encrypted)</password>
+    </server>
+    <!-- To stage a release of some part of Maven -->
+    <server>
+      <id>apache.releases.https</id>
+      <username>[YOUR APACHE LDAP USERNAME]</username>
+      <password>[YOUR APACHE LDAP PASSWORD] (encrypted)</password>
+    </server>
+   ...
+  </servers>
+---
+
+    * to sign the artifacts
+
+---
+  <profiles>
+    <profile>
+      <id>apache-release</id>
+      <properties>
+        <gpg.executable>gpg2</gpg.executable>
+        <gpg.passphrase>...</gpg.passphrase>
+      </properties>
+    </profile>
+  </profiles>
+---
+
+  * Download Apache Rat from {{{https://creadur.apache.org/rat/download_rat.cgi}https://creadur.apache.org/rat/download_rat.cgi}}.
+
+* Each time steps
+
+  * test your setup
+
+---
+$ mvn clean install -Papache-release
+---
+
+  * dry run of the release process
+
+---
+$ mvn release:prepare -DdryRun=true
+---
+
+  * run rat:
+
+---
+$ java -jar ~/Downloads/apache-rat-0.10/apache-rat-0.10.jar -d . -E .rat-excludes
+---
+
+  * check (and fix) the content of the <<<NOTICE>>> file (especially the date)
+
+  * release to the staging repository
+
+---
+$ mvn release:prepare
+$ mvn release:perform
+---
+
+  * close the staging repository at {{{https://repository.apache.org/}https://repository.apache.org/}}
+
+  * check that the artifacts are available in the repository
+
+  * send out <<<[VOTE]>>> e-mail on vxquery-dev
+
+  * after success on vxquery-dev send out <<<[VOTE]>>> e-mail on general@i.a.o
+
+  * after successful vote promote staging repository {{{https://repository.apache.org/}https://repository.apache.org/}}
+
+  * add new source artifacts (archive + signature + hashes) to svn {{{https://dist.apache.org/repos/dist/release/incubator/vxquery}https://dist.apache.org/repos/dist/release/incubator/vxquery}} and remove old release dirctory
+
+  * commit changes to svn
+
+  * update the <<<site>>> branch in git from the from the release-tag
+
+  * get site from svn (the site directory needs to be at <<<../site>>> from the git root directory)
+
+---
+$ cd ..
+$ svn co https://svn.apache.org/repos/asf/incubator/vxquery/site
+$ cd -
+---
+
+  * build a new site
+
+---
+$ mvn site site:deploy
+---
+
+  * submit the site to svn
+
+---
+$ cd ../site
+$ svn ci -m"updated site"
+$ cd -
+---
+
+  * wait a few days for the mirroring of the release artifacts
+
+  * send <<<[ANNOUNCE]>>> e-mail to announce@a.o, general@i.a.o, and vxquery-dev
+
+* References
+
+  * {{{https://docs.sonatype.org/display/Repository/How+To+Generate+PGP+Signatures+With+Maven}How To Generate PGP Signatures With Maven}}
+
+  * {{{https://www.apache.org/dev/publishing-maven-artifacts.html}Publishing Maven Artifacts}}
+
+~~ * Handling issues
+~~
+~~ ** Undo release plugin:
+~~
+~~ ---
+~~ $ svn merge -r 1526098:1524606 https://svn.apache.org/repos/asf/incubator/vxquery/branches/vxquery_0_2_staging
+~~ $ svn del -m "re-releasing build" https://svn.apache.org/repos/asf/incubator/vxquery/tags/apache-vxquery-0.2-incubating
+~~ ---
+

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/d9853267/src/site/site.xml
----------------------------------------------------------------------
diff --git a/src/site/site.xml b/src/site/site.xml
index da7924c..daf2f75 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -48,6 +48,7 @@ limitations under the License.
       <item name="Data Basic Types" href="development_tips.html"/>
       <item name="Data XML and Node Types" href="development_xml_node_details.html"/>
       <item name="Eclipse Setup" href="development_eclipse_setup.html"/>
+      <item name="Release steps" href="release.html"/>
     </menu>
 
     <menu ref="reports"/>      


[13/19] git commit: Revert "[maven-release-plugin] prepare for next development iteration"

Posted by ti...@apache.org.
Revert "[maven-release-plugin] prepare for next development iteration"

This reverts commit 32ea08c5d17675d36b907e14dcb76d9eaa028dc8.


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

Branch: refs/heads/master
Commit: b665f3f6c29201dd428f88356642a6837ad33fee
Parents: 32ea08c
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Thu Apr 10 09:58:56 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Thu Apr 10 09:58:56 2014 -0700

----------------------------------------------------------------------
 pom.xml                   | 4 ++--
 vxquery-benchmark/pom.xml | 2 +-
 vxquery-cli/pom.xml       | 4 ++--
 vxquery-core/pom.xml      | 2 +-
 vxquery-server/pom.xml    | 4 ++--
 vxquery-xtest/pom.xml     | 4 ++--
 6 files changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/b665f3f6/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 6a02224..b60f3ab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
 
   <groupId>org.apache.vxquery</groupId>
   <artifactId>apache-vxquery</artifactId>
-  <version>0.4-incubating-SNAPSHOT</version>
+  <version>0.3-incubating</version>
   <packaging>pom</packaging>
   <name>VXQuery</name>
   <description>A Versatile XQuery Processor</description>
@@ -50,7 +50,7 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</developerConnection>
     <url>https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</url>
-    <tag>HEAD</tag>
+    <tag>apache-vxquery-0.3-incubating</tag>
   </scm>
 
   <issueManagement>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/b665f3f6/vxquery-benchmark/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-benchmark/pom.xml b/vxquery-benchmark/pom.xml
index 4098d6a..a909a78 100644
--- a/vxquery-benchmark/pom.xml
+++ b/vxquery-benchmark/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.4-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
   
   <artifactId>apache-vxquery-benchmark</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/b665f3f6/vxquery-cli/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-cli/pom.xml b/vxquery-cli/pom.xml
index dc21cdf..58631b8 100644
--- a/vxquery-cli/pom.xml
+++ b/vxquery-cli/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.4-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-cli</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.4-incubating-SNAPSHOT</version>
+      <version>0.3-incubating</version>
       <scope>compile</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/b665f3f6/vxquery-core/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-core/pom.xml b/vxquery-core/pom.xml
index 496efdc..bc64f9b 100644
--- a/vxquery-core/pom.xml
+++ b/vxquery-core/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.4-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-core</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/b665f3f6/vxquery-server/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-server/pom.xml b/vxquery-server/pom.xml
index 92e6aba..47665bb 100644
--- a/vxquery-server/pom.xml
+++ b/vxquery-server/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.4-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-server</artifactId>
@@ -124,7 +124,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.4-incubating-SNAPSHOT</version>
+      <version>0.3-incubating</version>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/b665f3f6/vxquery-xtest/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-xtest/pom.xml b/vxquery-xtest/pom.xml
index e69ca77..76db7d9 100644
--- a/vxquery-xtest/pom.xml
+++ b/vxquery-xtest/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.4-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-xtest</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.4-incubating-SNAPSHOT</version>
+      <version>0.3-incubating</version>
     </dependency>
 
     <dependency>


[02/19] git commit: Added KEY for vinayakb@apache.org. Got the assembly plugin to exclude KEYS from the source release zip

Posted by ti...@apache.org.
Added KEY for vinayakb@apache.org. Got the assembly plugin to exclude KEYS from the source release zip


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

Branch: refs/heads/master
Commit: c1871e5e47195816c3623e7ddd335754367ae693
Parents: 6015207
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Tue Apr 1 12:44:04 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Tue Apr 1 12:44:04 2014 -0700

----------------------------------------------------------------------
 KEYS                             | 70 +++++++++++++++++++++++++++++++++++
 build/build-release-artifacts.sh | 25 -------------
 pom.xml                          | 20 +++++++---
 src/main/assembly/source.xml     |  3 +-
 4 files changed, 86 insertions(+), 32 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/c1871e5e/KEYS
----------------------------------------------------------------------
diff --git a/KEYS b/KEYS
index cc19962..3286a2e 100644
--- a/KEYS
+++ b/KEYS
@@ -70,3 +70,73 @@ cLb4T3tbAXY+fQK5mYUVL8XLBIfEU1nQl8AkJv07WNtbdf2qhe2OOKgDDP4XsAjk
 Tyw9s2ujCh0N7I2qX+MOAjgNpkGkgVhXCxiH3Q0RQCqGxYM=
 =vxKu
 -----END PGP PUBLIC KEY BLOCK-----
+pub   4096R/869307E0 2013-11-27
+uid                  Vinayak Borkar (ASF CODE SIGNING KEY) <vi...@apache.org>
+sig 3        869307E0 2013-11-27  Vinayak Borkar (ASF CODE SIGNING KEY) <vi...@apache.org>
+sig          BAED10BC 2013-12-03  Till Westmann (CODE SIGNING KEY) <ti...@apache.org>
+sub   4096R/1C307CBF 2013-11-27
+sig          869307E0 2013-11-27  Vinayak Borkar (ASF CODE SIGNING KEY) <vi...@apache.org>
+
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: GnuPG v2.0.22 (Darwin)
+
+mQINBFKWeq0BEADX4JMfsU2jP17jtxoEQjWUTZPKDwD32/ZuFAcn41XlMmNkKUNW
+/D2GWPlHAS4H2JB1MnTYtDC/oqnAB6GjYeQqLRp/IKBnK+1s38SW1/dDlrbgyPgP
+/1W3o90mImUkkECv1DC8m7eTQgwJ8XU6BwNL9lVEDuh7mVNDmcW9DcrnvFTXLy6B
+tHVYVM4/9OmmGMryNuwJv/5N63Gfk3nIrNoiq3lykdDk6sKF3G4HkmUx9LDmqzul
+5H8rzI2jKnFMQ1/IYf2gWzLgWF1f2P20Kh7M8YN2mpKdh0Cq6/RjThK1CgyLTrU+
+lFeAP8R8a2Pgs1b7yAGJ1w8oENzPEs/vh4wo1Xgf9FiatNtKzX9OdMJsBSGTDhkm
+KvPkeDNbnnXaoXc+yo1YEVXekTlYGthaf2iudBaboYxUrDwbzBnurifXy5RIxNKj
+S9RLJFbiYAP/rpTd1pBcfGsuR4jGgulJ4QUAg4z5Mb8VmYR4UmLfISNUynaB9DLz
+zX9jOkugRhcUPhbEcyyQ47rXsXjK1XO0350g78L9ag2DuGlF6zXS9hWC4mE8q1Zb
+HwNIKQnKwuq+9q3tztQEpwMlcDyaDXlBMt3Y7q80xsyRhd2YzhDUAwofe8uvGiWP
+7DhY/OmuRkHaBObI3weo060RW9SmU/rSJIPgh4E/MuqDNWw4SPYE7bUZmQARAQAB
+tDtWaW5heWFrIEJvcmthciAoQVNGIENPREUgU0lHTklORyBLRVkpIDx2aW5heWFr
+YkBhcGFjaGUub3JnPokCNwQTAQIAIQIbAwIeAQIXgAUCUpZ8TQULCQgHAwUVCgkI
+CwUWAgMBAAAKCRDnoA/phpMH4H5aEADS5yHfZoT/RwA9rLsXyMvLRs0U69Mea/Z5
+XI2P0jqTZr0ZfGQUwPaJiDPi/FQCaovSiHgaxJgbPttoDpnDkQ0rqYA7E6ZzTqM8
+7QOzeBHtpe+y5+eU9dG1mpCWpRPBWPrRMa2gKYJfLCKbw+Q5vRwCYHA8tP5/YUaB
+Gq3o1UXBcwyLpVS6nwA5GuGglwcDGP7GjWhSmEurRW98EVmfCGAPipPdwIA2VYpS
+KVIGA8GULoljHa903C6r4ztsGEsxpZZ2TCe47XcC+uAqMYoq7bMZjd+BQMh/IGC1
+TTgN/PfdLVY9Q+XmlCZspKqJMZWwea2FnWCf53/bwtjwexG5ccSbiCiP1S8WUHOj
+6eOZUYR1SxCQitVpFm4PQ/z3Tovw7GjKhrmAQMHRRuAky3UTkllt5gllQftlwhon
+gSk1PpfRisfHJbk3jqdrVyRAZ8lc9DZSKtUe0nPfqnjljbePTKxRzpZwt3qQvjqQ
+U7FvmRJA5qoNKFTYQP0zDKThrUWweT9ENma3RbiLaaR+KnwXwPSqXTs0D/B1aIEy
+ljO4slLfdE2WRZPt8IaFSlODAWLb23qGhipriX2lfA0yeZoKN9kD6AXOR0tWOJ9w
+az/weiUSIGxruW3Ombo7QU8vkjV+dkYqz171zbTZam4ILnQ7CTlXTvhmHWjFHZx1
+jI7wn7BEV4kCHAQQAQIABgUCUp1xhgAKCRAlAeRruu0QvKIDEACdMRr/bp9ws6qp
+gM2x95sPULzzbdBUmWUq0pXPAZ0sT1jh7r8GD8NNxh00XZB7pT16+cbYGngcL6zl
+QTLBdfDthPwL8CDIGso1GzUE9eautrQ3aSEtZUyntf2/Q/qolFT21rP6HG4rfW+6
+6rOcG2b17FsLQJncqZSkw6Chaam7BcUQ6Id3byToYHpVArRK3IadQi2C0gF9dCqb
+06+GO20qLv5kVfbzfdM35VfDhbX2Mz82dFf2qeO3bqTQbsIRCk9vliXwUsKBxu7X
+pa29L98z2KRMItVS7FjEQWYRgde5Z/KaSOusLw8svxKwXedGK5sGrc8+hWZSHDoz
+eOxFymvS+KFW+0103Hz/mUzIr4YGHcOmANuQzNWAIvwMsPt5WpquopICJ0DCUYKP
++yFZ4sFaaFqTYkOqX0JKgC7RzC9DuOAIunLeD8l+aOgMbdpW33wIe8boZ/u5LMKY
+lDXRamHNPM+vdyxEx21Il5Rtc/WeFG8QiOtorFv4tjnkwFpcokvTa6tS06PlGmUu
+MymLK8+wPoctwdj1qaGC4CBIDLsJP4Pv12vJsY5ZOzMPQu7NDLQdnOI8rTcWuipM
+SfyEsbjtgHZu3j7mqx6vpGdFe12g1+fbA5oAlYsGzgNy5VWesyxbARQEY9ao4BX3
+7pU2+N3rLW66UBx7zZjsJKzNa0Yi1bkCDQRSlnqtARAA0mJe4SNV+1esrYHB3l3g
+P0WAolMVtEzHXphArBH9unylRpiYGOEDxfk/NN/9WitHo6Ttz8eVveMzW90H9ebv
+WlnnyDbuqDKckTLUkzzrWbMa5gQG2R0VqUthMfCzjrMYDoAboQbeGJ7vPwIDpWYC
+SIZ+myr1QFipElxXoWPAcazF9/mLXKLshdSF0Y+RbCWbZP/M54GYumvVc4O10KQr
+4GmYakSuvJfSIpq9l22cJReoSSfBctsoDKMnWo4R68eaDEv1N/BtT3YXiQP9Jlzy
+sZ+iC5VXOXWMoEJeFq5WXcL98j98CUEtd2vVw8YFcCkABu4Fnr3dW4xeGBNKCA5b
+ibT5rMw7x68mB6oWTpFVeXr/7NoPdzsbuL5Gcpq6xFnCvmEdzI5jFZ+2gsfUruvD
+evJZttCQ+ju3/A/u2YpvjoKUX35O/I7zFRPiw2Wjm7U9CZvdvkqmgV9Eo8nKYJWi
+NIs6ixrgUg0tf9qmDaWyH/OX/Gwu7BWGe5zPTqDVEIy2LLynE0AC2B1B+3qjShNU
+vKK6KavMf1xdKtdPnvmq+zp2n27nfLrUm1IWVOLt2Hf40wbwgr839E3LKTLGpWoB
++l/AyYQW4BnAPXd8nyvlpzioqqfUCu6PSiAR6+Cy5LmjOBkxAr55oRr6nli9wovs
+uRLMItCycSAtFp2UzNpGRQcAEQEAAYkCHwQYAQIACQUCUpZ6rQIbDAAKCRDnoA/p
+hpMH4HT9EACnB3/KJPhpihT3VOMjzX0+70yXDVg7FIVCyIVK9/9LkpRcTiEW3aKE
+igZ0w/tssxtP4MYzJvALYd9+/Blg6drWAoGxgkxOiA+2sKc0r32eL8RXzDqzVoFN
+QQZHYL7v9p/3ieodGG3qvT+EALgxdjFzRpBhXOy9HWEnuYElXAFcPKRkBdsT3GnI
+9QF8fHwb1d/CKyKkmjhpaAL7TOCaBnPNb5n2bRy7TB5gjyjnoR7s//Z7DLVBgFLx
+v1ts9jAp9ZnGjfTXQytFkLK/WDf5uOmMuodh+VTd8akRTvj1J0Us8M/Dg6dwuq54
+TtoenzIVzj5ybDmj+yEoXOL7j+5JWzUQGeepEpfOIU5THxqg++e79uo3FYSkbOmf
++a/AenFL4EDEUNBTq2AVK99xE3JWC94hA20gNjsjltk6YvRkAQpgCipQNpftFmIQ
+NvAeFJ3rQBdqW2ofZ9RVrmY79VGpa3sjU8BdPv4Bw5w5VGGUpDldeAXuX4zocPyw
+lrMMKxTncUUobZW4AkG5Xt15wJbaLBDvjeBHE22g/dAQp9VUT79UTGU0z6trUlSk
+gQz7BgQsobVW4M80HV3rr5LE41Fb5LvduSMH91oAIkIQoPxmNnBwU+5PqS45rABr
+vafASkfwrFxPoYDpk4QVYSASpiA7FswUpiSouJqAp+k90cctgKBeKA==
+=tb2w
+-----END PGP PUBLIC KEY BLOCK-----

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/c1871e5e/build/build-release-artifacts.sh
----------------------------------------------------------------------
diff --git a/build/build-release-artifacts.sh b/build/build-release-artifacts.sh
deleted file mode 100755
index 8c0bb83..0000000
--- a/build/build-release-artifacts.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-# 
-#     http://www.apache.org/licenses/LICENSE-2.0
-# 
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-mvn assembly:assembly
-
-export ARCHIVE=apache-vxquery-0.2-incubating-src.zip
-gpg2 --armor --output ${ARCHIVE}.asc --detach-sig target/${ARCHIVE}
-cat target/${ARCHIVE} | openssl dgst -sha1 | sed -e's/(stdin)= //' > ${ARCHIVE}.sha1
-cat target/${ARCHIVE} | openssl dgst -md5 | sed -e's/(stdin)= //' > ${ARCHIVE}.md5
-
-#mvn site site:deploy

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/c1871e5e/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 00e815e..35109e0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -475,11 +475,21 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-assembly-plugin</artifactId>
-        <configuration>
-          <descriptors>
-            <descriptor>src/main/assembly/source.xml</descriptor>
-          </descriptors>
-        </configuration>
+        <executions>
+          <execution>
+            <id>source-release-assembly</id>
+            <phase>package</phase>
+            <goals>
+              <goal>single</goal>
+            </goals>
+            <configuration combine.self="override">
+              <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
+              <descriptors>
+                <descriptor>src/main/assembly/source.xml</descriptor>
+              </descriptors>
+            </configuration>
+          </execution>
+        </executions>
       </plugin>
       <!--
       <plugin>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/c1871e5e/src/main/assembly/source.xml
----------------------------------------------------------------------
diff --git a/src/main/assembly/source.xml b/src/main/assembly/source.xml
index 8af5332..350d064 100644
--- a/src/main/assembly/source.xml
+++ b/src/main/assembly/source.xml
@@ -17,7 +17,7 @@
 <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
-  <id>src</id>
+  <id>source-release</id>
   <formats>
     <format>zip</format>
   </formats>
@@ -28,7 +28,6 @@
       <useDefaultExcludes>true</useDefaultExcludes>
       <includes>
         <include>**/DISCLAIMER</include>
-        <include>**/KEYS</include>
         <include>**/LICENSE</include>
         <include>**/NOTICE</include>
         <include>**/README</include>


[19/19] git commit: Merge branch 'vxquery_0_3_staging'

Posted by ti...@apache.org.
Merge branch 'vxquery_0_3_staging'


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

Branch: refs/heads/master
Commit: 92302902fbcea958a9c77f5fc4cfeea2b275fead
Parents: d985326 40328ae
Author: Till Westmann <we...@gmail.com>
Authored: Mon Apr 21 22:46:07 2014 -0700
Committer: Till Westmann <we...@gmail.com>
Committed: Mon Apr 21 22:46:07 2014 -0700

----------------------------------------------------------------------
 pom.xml                   | 4 ++--
 vxquery-benchmark/pom.xml | 2 +-
 vxquery-cli/pom.xml       | 4 ++--
 vxquery-core/pom.xml      | 2 +-
 vxquery-server/pom.xml    | 4 ++--
 vxquery-xtest/pom.xml     | 4 ++--
 6 files changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/92302902/pom.xml
----------------------------------------------------------------------


[14/19] git commit: Revert "[maven-release-plugin] prepare release apache-vxquery-0.3-incubating"

Posted by ti...@apache.org.
Revert "[maven-release-plugin] prepare release apache-vxquery-0.3-incubating"

This reverts commit a15ad180e2dc79830404b6bf949d964a129adfb5.


Project: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/commit/41c3d100
Tree: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/tree/41c3d100
Diff: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/diff/41c3d100

Branch: refs/heads/master
Commit: 41c3d100111dd78ec82487ebb8403fc3e15d71d9
Parents: b665f3f
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Thu Apr 10 09:58:57 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Thu Apr 10 09:58:57 2014 -0700

----------------------------------------------------------------------
 pom.xml                   | 3 +--
 vxquery-benchmark/pom.xml | 5 +++--
 vxquery-cli/pom.xml       | 4 ++--
 vxquery-core/pom.xml      | 6 +++---
 vxquery-server/pom.xml    | 7 ++++---
 vxquery-xtest/pom.xml     | 4 ++--
 6 files changed, 15 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/41c3d100/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b60f3ab..6d70006 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
 
   <groupId>org.apache.vxquery</groupId>
   <artifactId>apache-vxquery</artifactId>
-  <version>0.3-incubating</version>
+  <version>0.3-incubating-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>VXQuery</name>
   <description>A Versatile XQuery Processor</description>
@@ -50,7 +50,6 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</developerConnection>
     <url>https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</url>
-    <tag>apache-vxquery-0.3-incubating</tag>
   </scm>
 
   <issueManagement>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/41c3d100/vxquery-benchmark/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-benchmark/pom.xml b/vxquery-benchmark/pom.xml
index a909a78..818977f 100644
--- a/vxquery-benchmark/pom.xml
+++ b/vxquery-benchmark/pom.xml
@@ -14,13 +14,14 @@
   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>
   
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.3-incubating-SNAPSHOT</version>
   </parent>
   
   <artifactId>apache-vxquery-benchmark</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/41c3d100/vxquery-cli/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-cli/pom.xml b/vxquery-cli/pom.xml
index 58631b8..a7a51df 100644
--- a/vxquery-cli/pom.xml
+++ b/vxquery-cli/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.3-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-cli</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating</version>
+      <version>0.3-incubating-SNAPSHOT</version>
       <scope>compile</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/41c3d100/vxquery-core/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-core/pom.xml b/vxquery-core/pom.xml
index bc64f9b..5a0dfdd 100644
--- a/vxquery-core/pom.xml
+++ b/vxquery-core/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.3-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-core</artifactId>
@@ -148,7 +148,7 @@
                     </goals>
                   </pluginExecutionFilter>
                   <action>
-                    <ignore />
+                    <ignore></ignore>
                   </action>
                 </pluginExecution>
                 <pluginExecution>
@@ -161,7 +161,7 @@
                     </goals>
                   </pluginExecutionFilter>
                   <action>
-                    <ignore />
+                    <ignore></ignore>
                   </action>
                 </pluginExecution>
               </pluginExecutions>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/41c3d100/vxquery-server/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-server/pom.xml b/vxquery-server/pom.xml
index 47665bb..9c1b15d 100644
--- a/vxquery-server/pom.xml
+++ b/vxquery-server/pom.xml
@@ -14,13 +14,14 @@
   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>
 
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.3-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-server</artifactId>
@@ -124,7 +125,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating</version>
+      <version>0.3-incubating-SNAPSHOT</version>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/41c3d100/vxquery-xtest/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-xtest/pom.xml b/vxquery-xtest/pom.xml
index 76db7d9..cb048e7 100644
--- a/vxquery-xtest/pom.xml
+++ b/vxquery-xtest/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating</version>
+    <version>0.3-incubating-SNAPSHOT</version>
   </parent>
 
   <artifactId>apache-vxquery-xtest</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating</version>
+      <version>0.3-incubating-SNAPSHOT</version>
     </dependency>
 
     <dependency>


[16/19] git commit: [maven-release-plugin] prepare release apache-vxquery-0.3-incubating

Posted by ti...@apache.org.
[maven-release-plugin] prepare release apache-vxquery-0.3-incubating


Project: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/commit/8bcba7bf
Tree: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/tree/8bcba7bf
Diff: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/diff/8bcba7bf

Branch: refs/heads/master
Commit: 8bcba7bf971f183e009ecac45a268d51abaa6e99
Parents: e5485e8
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Thu Apr 10 10:07:29 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Thu Apr 10 10:07:29 2014 -0700

----------------------------------------------------------------------
 pom.xml                   | 3 ++-
 vxquery-benchmark/pom.xml | 5 ++---
 vxquery-cli/pom.xml       | 4 ++--
 vxquery-core/pom.xml      | 6 +++---
 vxquery-server/pom.xml    | 7 +++----
 vxquery-xtest/pom.xml     | 4 ++--
 6 files changed, 14 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/8bcba7bf/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 6d70006..b60f3ab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
 
   <groupId>org.apache.vxquery</groupId>
   <artifactId>apache-vxquery</artifactId>
-  <version>0.3-incubating-SNAPSHOT</version>
+  <version>0.3-incubating</version>
   <packaging>pom</packaging>
   <name>VXQuery</name>
   <description>A Versatile XQuery Processor</description>
@@ -50,6 +50,7 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</developerConnection>
     <url>https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</url>
+    <tag>apache-vxquery-0.3-incubating</tag>
   </scm>
 
   <issueManagement>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/8bcba7bf/vxquery-benchmark/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-benchmark/pom.xml b/vxquery-benchmark/pom.xml
index 818977f..a909a78 100644
--- a/vxquery-benchmark/pom.xml
+++ b/vxquery-benchmark/pom.xml
@@ -14,14 +14,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>
   
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
   
   <artifactId>apache-vxquery-benchmark</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/8bcba7bf/vxquery-cli/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-cli/pom.xml b/vxquery-cli/pom.xml
index a7a51df..58631b8 100644
--- a/vxquery-cli/pom.xml
+++ b/vxquery-cli/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-cli</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating-SNAPSHOT</version>
+      <version>0.3-incubating</version>
       <scope>compile</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/8bcba7bf/vxquery-core/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-core/pom.xml b/vxquery-core/pom.xml
index 5a0dfdd..bc64f9b 100644
--- a/vxquery-core/pom.xml
+++ b/vxquery-core/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-core</artifactId>
@@ -148,7 +148,7 @@
                     </goals>
                   </pluginExecutionFilter>
                   <action>
-                    <ignore></ignore>
+                    <ignore />
                   </action>
                 </pluginExecution>
                 <pluginExecution>
@@ -161,7 +161,7 @@
                     </goals>
                   </pluginExecutionFilter>
                   <action>
-                    <ignore></ignore>
+                    <ignore />
                   </action>
                 </pluginExecution>
               </pluginExecutions>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/8bcba7bf/vxquery-server/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-server/pom.xml b/vxquery-server/pom.xml
index 9c1b15d..47665bb 100644
--- a/vxquery-server/pom.xml
+++ b/vxquery-server/pom.xml
@@ -14,14 +14,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>
 
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-server</artifactId>
@@ -125,7 +124,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating-SNAPSHOT</version>
+      <version>0.3-incubating</version>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/8bcba7bf/vxquery-xtest/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-xtest/pom.xml b/vxquery-xtest/pom.xml
index cb048e7..76db7d9 100644
--- a/vxquery-xtest/pom.xml
+++ b/vxquery-xtest/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-xtest</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating-SNAPSHOT</version>
+      <version>0.3-incubating</version>
     </dependency>
 
     <dependency>


[07/19] git commit: [maven-release-plugin] prepare release apache-vxquery-0.3-incubating

Posted by ti...@apache.org.
[maven-release-plugin] prepare release apache-vxquery-0.3-incubating


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

Branch: refs/heads/master
Commit: b2e1eb5cc5a2c52c55dc736360637eb07258b7fd
Parents: 0bc9812
Author: Vinayak Borkar <vi...@gmail.com>
Authored: Wed Apr 9 16:44:27 2014 -0700
Committer: Vinayak Borkar <vi...@gmail.com>
Committed: Wed Apr 9 16:44:27 2014 -0700

----------------------------------------------------------------------
 pom.xml                   | 3 ++-
 vxquery-benchmark/pom.xml | 5 ++---
 vxquery-cli/pom.xml       | 4 ++--
 vxquery-core/pom.xml      | 6 +++---
 vxquery-server/pom.xml    | 7 +++----
 vxquery-xtest/pom.xml     | 4 ++--
 6 files changed, 14 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/b2e1eb5c/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 6d70006..b60f3ab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
 
   <groupId>org.apache.vxquery</groupId>
   <artifactId>apache-vxquery</artifactId>
-  <version>0.3-incubating-SNAPSHOT</version>
+  <version>0.3-incubating</version>
   <packaging>pom</packaging>
   <name>VXQuery</name>
   <description>A Versatile XQuery Processor</description>
@@ -50,6 +50,7 @@
     <connection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</connection>
     <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</developerConnection>
     <url>https://git-wip-us.apache.org/repos/asf/incubator-vxquery.git</url>
+    <tag>apache-vxquery-0.3-incubating</tag>
   </scm>
 
   <issueManagement>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/b2e1eb5c/vxquery-benchmark/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-benchmark/pom.xml b/vxquery-benchmark/pom.xml
index 818977f..a909a78 100644
--- a/vxquery-benchmark/pom.xml
+++ b/vxquery-benchmark/pom.xml
@@ -14,14 +14,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>
   
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
   
   <artifactId>apache-vxquery-benchmark</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/b2e1eb5c/vxquery-cli/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-cli/pom.xml b/vxquery-cli/pom.xml
index a7a51df..58631b8 100644
--- a/vxquery-cli/pom.xml
+++ b/vxquery-cli/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-cli</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating-SNAPSHOT</version>
+      <version>0.3-incubating</version>
       <scope>compile</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/b2e1eb5c/vxquery-core/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-core/pom.xml b/vxquery-core/pom.xml
index 5a0dfdd..bc64f9b 100644
--- a/vxquery-core/pom.xml
+++ b/vxquery-core/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-core</artifactId>
@@ -148,7 +148,7 @@
                     </goals>
                   </pluginExecutionFilter>
                   <action>
-                    <ignore></ignore>
+                    <ignore />
                   </action>
                 </pluginExecution>
                 <pluginExecution>
@@ -161,7 +161,7 @@
                     </goals>
                   </pluginExecutionFilter>
                   <action>
-                    <ignore></ignore>
+                    <ignore />
                   </action>
                 </pluginExecution>
               </pluginExecutions>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/b2e1eb5c/vxquery-server/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-server/pom.xml b/vxquery-server/pom.xml
index 9c1b15d..47665bb 100644
--- a/vxquery-server/pom.xml
+++ b/vxquery-server/pom.xml
@@ -14,14 +14,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>
 
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-server</artifactId>
@@ -125,7 +124,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating-SNAPSHOT</version>
+      <version>0.3-incubating</version>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/b2e1eb5c/vxquery-xtest/pom.xml
----------------------------------------------------------------------
diff --git a/vxquery-xtest/pom.xml b/vxquery-xtest/pom.xml
index cb048e7..76db7d9 100644
--- a/vxquery-xtest/pom.xml
+++ b/vxquery-xtest/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.vxquery</groupId>
     <artifactId>apache-vxquery</artifactId>
-    <version>0.3-incubating-SNAPSHOT</version>
+    <version>0.3-incubating</version>
   </parent>
 
   <artifactId>apache-vxquery-xtest</artifactId>
@@ -83,7 +83,7 @@
     <dependency>
       <groupId>org.apache.vxquery</groupId>
       <artifactId>apache-vxquery-core</artifactId>
-      <version>0.3-incubating-SNAPSHOT</version>
+      <version>0.3-incubating</version>
     </dependency>
 
     <dependency>