Preparing for release 0.2.3-incubating
Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/480df911 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/480df911 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/480df911 Branch: refs/heads/master Commit: 480df911d23ac92802d68973734d902bbd577b29 Parents: 398b3e6 Author: Aaron McCurry <[email protected]> Authored: Fri Jul 11 21:01:01 2014 -0400 Committer: Aaron McCurry <[email protected]> Committed: Fri Jul 11 21:01:01 2014 -0400 ---------------------------------------------------------------------- CHANGES.txt | 4 +++ blur-console/pom.xml | 70 +++++++++++++++++++++++++++++++++++----- blur-core/pom.xml | 2 +- blur-gui/pom.xml | 2 +- blur-mapred-hadoop1/pom.xml | 2 +- blur-mapred-hadoop2/pom.xml | 2 +- blur-query/pom.xml | 2 +- blur-shell/pom.xml | 2 +- blur-store/pom.xml | 2 +- blur-thrift/pom.xml | 2 +- blur-util/pom.xml | 2 +- contrib/blur-jdbc/pom.xml | 2 +- contrib/blur-titan/pom.xml | 2 +- distribution/pom.xml | 2 +- docs/cluster-setup.html | 4 +-- docs/getting-started.html | 12 ++++--- docs/release-notes.html | 6 ++++ pom.xml | 2 +- whiteboard/slur/pom.xml | 10 +++--- 19 files changed, 99 insertions(+), 33 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index a9bb346..ab15ed0 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,7 @@ +Release 0.2.3 - 2014-07-11 + +** Apache Blur 0.2.3 is a re-release of 0.2.2 with a few bug fixes and a new version of Apache Blur Console. + Release 0.2.2 - 2014-05-06 Release Notes - Apache Blur - Version 0.2.2 http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/blur-console/pom.xml ---------------------------------------------------------------------- diff --git a/blur-console/pom.xml b/blur-console/pom.xml index 93f5ec0..e7b7c0f 100644 --- a/blur-console/pom.xml +++ b/blur-console/pom.xml @@ -17,7 +17,7 @@ <parent> <groupId>org.apache.blur</groupId> <artifactId>blur</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <relativePath>../pom.xml</relativePath> </parent> @@ -78,7 +78,61 @@ </dependency> </dependencies> - <build> + + <build> + <resources> + <resource> + <directory>src/main/resources</directory> + <filtering>true</filtering> + <includes> + <include>**/blur-console-build.properties</include> + </includes> + </resource> + <resource> + <directory>src/main/resources</directory> + <filtering>false</filtering> + <excludes> + <exclude>**/blur-console-build.properties</exclude> + </excludes> + </resource> + </resources> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <argLine>-XX:+UseConcMarkSweepGC -Xmx1g -Xms1g</argLine> + <forkCount>2</forkCount> + <forkMode>always</forkMode> + <reuseForks>false</reuseForks> + <systemPropertyVariables> + <blur.tmp.dir>${project.build.directory}/target/tmp</blur.tmp.dir> + </systemPropertyVariables> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.6</source> + <target>1.6</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + + <!--build> <resources> <resource> <directory>src/main/resources</directory> @@ -105,10 +159,10 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> - <!-- plugin> + < - plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> - </plugin --> + </plugin - > <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> @@ -174,7 +228,7 @@ <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> - <!--<version>2.6</version>--> + < - <version>2.6</version> - > <configuration> <instrumentation> <excludes> @@ -191,9 +245,9 @@ </executions> </plugin> </plugins> - </build> + </build--> - <reporting> + <!--reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -222,7 +276,7 @@ </configuration> </plugin> </plugins> - </reporting> + </reporting--> <profiles> <profile> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/blur-core/pom.xml ---------------------------------------------------------------------- diff --git a/blur-core/pom.xml b/blur-core/pom.xml index c1eb3d2..df848bd 100644 --- a/blur-core/pom.xml +++ b/blur-core/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.blur</groupId> <artifactId>blur</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.apache.blur</groupId> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/blur-gui/pom.xml ---------------------------------------------------------------------- diff --git a/blur-gui/pom.xml b/blur-gui/pom.xml index e45c9af..986ff47 100644 --- a/blur-gui/pom.xml +++ b/blur-gui/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.blur</groupId> <artifactId>blur</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.apache.blur</groupId> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/blur-mapred-hadoop1/pom.xml ---------------------------------------------------------------------- diff --git a/blur-mapred-hadoop1/pom.xml b/blur-mapred-hadoop1/pom.xml index bc65493..373024b 100644 --- a/blur-mapred-hadoop1/pom.xml +++ b/blur-mapred-hadoop1/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.blur</groupId> <artifactId>blur</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.apache.blur</groupId> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/blur-mapred-hadoop2/pom.xml ---------------------------------------------------------------------- diff --git a/blur-mapred-hadoop2/pom.xml b/blur-mapred-hadoop2/pom.xml index 1bcf361..7b5eea1 100644 --- a/blur-mapred-hadoop2/pom.xml +++ b/blur-mapred-hadoop2/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.blur</groupId> <artifactId>blur</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.apache.blur</groupId> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/blur-query/pom.xml ---------------------------------------------------------------------- diff --git a/blur-query/pom.xml b/blur-query/pom.xml index 2837d7b..d6d3344 100644 --- a/blur-query/pom.xml +++ b/blur-query/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.blur</groupId> <artifactId>blur</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.apache.blur</groupId> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/blur-shell/pom.xml ---------------------------------------------------------------------- diff --git a/blur-shell/pom.xml b/blur-shell/pom.xml index 0e2db7b..d8dade2 100644 --- a/blur-shell/pom.xml +++ b/blur-shell/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.blur</groupId> <artifactId>blur</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.apache.blur</groupId> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/blur-store/pom.xml ---------------------------------------------------------------------- diff --git a/blur-store/pom.xml b/blur-store/pom.xml index d297035..28655dc 100644 --- a/blur-store/pom.xml +++ b/blur-store/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.blur</groupId> <artifactId>blur</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.apache.blur</groupId> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/blur-thrift/pom.xml ---------------------------------------------------------------------- diff --git a/blur-thrift/pom.xml b/blur-thrift/pom.xml index 2934103..d4f2889 100644 --- a/blur-thrift/pom.xml +++ b/blur-thrift/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.blur</groupId> <artifactId>blur</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.apache.blur</groupId> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/blur-util/pom.xml ---------------------------------------------------------------------- diff --git a/blur-util/pom.xml b/blur-util/pom.xml index 6934dff..0aed52a 100644 --- a/blur-util/pom.xml +++ b/blur-util/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.blur</groupId> <artifactId>blur</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.apache.blur</groupId> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/contrib/blur-jdbc/pom.xml ---------------------------------------------------------------------- diff --git a/contrib/blur-jdbc/pom.xml b/contrib/blur-jdbc/pom.xml index 2f932dd..0d8e83c 100644 --- a/contrib/blur-jdbc/pom.xml +++ b/contrib/blur-jdbc/pom.xml @@ -22,7 +22,7 @@ under the License. <parent> <groupId>org.apache.blur</groupId> <artifactId>blur</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/contrib/blur-titan/pom.xml ---------------------------------------------------------------------- diff --git a/contrib/blur-titan/pom.xml b/contrib/blur-titan/pom.xml index 4f1ecf4..3f3f394 100644 --- a/contrib/blur-titan/pom.xml +++ b/contrib/blur-titan/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.blur</groupId> <artifactId>blur</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.apache.blur</groupId> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/distribution/pom.xml ---------------------------------------------------------------------- diff --git a/distribution/pom.xml b/distribution/pom.xml index ea2b05f..7eacd51 100644 --- a/distribution/pom.xml +++ b/distribution/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.blur</groupId> <artifactId>blur</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <relativePath>../pom.xml</relativePath> </parent> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/docs/cluster-setup.html ---------------------------------------------------------------------- diff --git a/docs/cluster-setup.html b/docs/cluster-setup.html index c2c345b..5d26f62 100644 --- a/docs/cluster-setup.html +++ b/docs/cluster-setup.html @@ -113,9 +113,9 @@ file: <pre> <code class="bash"># The ZooKeeper connection string, consider adding a root path to the string, it # can help when upgrading Blur. -# Example: zknode1:2181,zknode2:2181,zknode3:2181/blur-0.2.1 +# Example: zknode1:2181,zknode2:2181,zknode3:2181/blur-0.2.3 # -# NOTE: If you provide the root path "/blur-0.2.1", that will have to be manually +# NOTE: If you provide the root path "/blur-0.2.3", that will have to be manually # created before Blur will start. blur.zookeeper.connection=127.0.0.1 http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/docs/getting-started.html ---------------------------------------------------------------------- diff --git a/docs/getting-started.html b/docs/getting-started.html index c5018a7..6f970b0 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -99,7 +99,9 @@ cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys</code></pre> <h3>Download Source and Binary Artifacts</h3> <p> Both the source and binary artifacts are provided via mirrors here:<br/><br/> - <a href="http://www.apache.org/dyn/closer.cgi/incubator/blur/0.2.2-incubating/apache-blur-0.2.2-incubating-src.tar.gz" class="btn btn-large btn-primary">Apache Blur 0.2.2 Source</a> <a href="http://www.apache.org/dyn/closer.cgi/incubator/blur/0.2.2-incubating/apache-blur-0.2.2-incubating-hadoop1-bin.tar.gz" class="btn btn-large btn-primary">Apache Blur 0.2.2 Binary</a> + <a href="http://www.apache.org/dyn/closer.cgi/incubator/blur/0.2.3-incubating/apache-blur-0.2.3-incubating-src.tar.gz" class="btn btn-large btn-primary">Apache Blur 0.2.3 Source</a> + <a href="http://www.apache.org/dyn/closer.cgi/incubator/blur/0.2.3-incubating/apache-blur-0.2.3-incubating-hadoop1-bin.tar.gz" class="btn btn-large btn-primary">Apache Blur 0.2.3 Hadoop1 Binary</a> + <a href="http://www.apache.org/dyn/closer.cgi/incubator/blur/0.2.3-incubating/apache-blur-0.2.3-incubating-hadoop2-bin.tar.gz" class="btn btn-large btn-primary">Apache Blur 0.2.3 Hadoop2 Binary</a> </p> </section> <section> @@ -115,13 +117,13 @@ cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys</code></pre> <p>Build the artifacts for Hadoop 1 (if you want to run the tests remove the "-DskipTests")</p> <pre><code class="bash">cd incubator-blur/ mvn install -DskipTests -Dhadoop1</code></pre> - <p>The binary artifact is located <code>distribution/target/apache-blur-0.2.2-incubating-hadoop1-bin.tar.gz</code>.</p> + <p>The binary artifact is located <code>distribution/target/apache-blur-0.2.3-incubating-hadoop1-bin.tar.gz</code>.</p> <h4>Hadoop 2</h4> <div class="bs-callout bs-callout-info"><h4>Heads Up!</h4><p>While all the tests pass on Hadoop 2, Blur has not be tested at scale on Hadoop 2 and bin/blur-config.sh script will likely require modification to include the correct Hadoop 2 libraries.</p></div> <p>Build the artifacts for Hadoop 2 (if you want to run the tests remove the "-DskipTests")</p> <pre><code class="bash">cd incubator-blur/ mvn install -DskipTests -Dhadoop2</code></pre> - <p>The binary artifact is located <code>distribution/target/apache-blur-0.2.2-incubating-hadoop2-bin.tar.gz</code>.</p> + <p>The binary artifact is located <code>distribution/target/apache-blur-0.2.3-incubating-hadoop2-bin.tar.gz</code>.</p> </section> <section> <div class="page-header"> @@ -162,12 +164,12 @@ mvn install -DskipTests -Dhadoop2</code></pre> <p> You should see: </p> - <pre><code class="bash">blur@blurvm:~$ apache-blur-0.2.2-incubating/bin/start-all.sh + <pre><code class="bash">blur@blurvm:~$ apache-blur-0.2.3-incubating/bin/start-all.sh localhost: ZooKeeper starting as process 6650. localhost: Shard [0] starting as process 6783. localhost: Controller [0] starting as process 6933.</code></pre> <p>If you run the start command again you should see:</p> - <pre><code class="bash">blur@blurvm:~$ apache-blur-0.2.2-incubating/bin/stop-all.sh + <pre><code class="bash">blur@blurvm:~$ apache-blur-0.2.3-incubating/bin/stop-all.sh localhost: Stopping Controller [0] server with pid [6933]. localhost: Stopping Shard [0] server with pid [6783]. localhost: Stopping ZooKeeper with pid [6650].</code></pre> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/docs/release-notes.html ---------------------------------------------------------------------- diff --git a/docs/release-notes.html b/docs/release-notes.html index 55b44a7..2faffd6 100644 --- a/docs/release-notes.html +++ b/docs/release-notes.html @@ -55,6 +55,12 @@ <p> <!-- Header for Release Notes --> + Release Notes - Apache Blur - Version 0.2.3<br/><br/> + +<b>** Apache Blur 0.2.3 is a re-release of 0.2.2 with a few bug fixes and a new version of Apache Blur Console.</b><br/> +<br/> + + Release Notes - Apache Blur - Version 0.2.2 http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 2a80fed..7728a8f 100644 --- a/pom.xml +++ b/pom.xml @@ -29,7 +29,7 @@ under the License. <groupId>org.apache.blur</groupId> <artifactId>blur</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <packaging>pom</packaging> <name>Blur</name> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/480df911/whiteboard/slur/pom.xml ---------------------------------------------------------------------- diff --git a/whiteboard/slur/pom.xml b/whiteboard/slur/pom.xml index 4467af6..bdea0de 100644 --- a/whiteboard/slur/pom.xml +++ b/whiteboard/slur/pom.xml @@ -34,18 +34,18 @@ under the License. <dependency> <groupId>org.apache.blur</groupId> <artifactId>blur-core</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.blur</groupId> <artifactId>blur-util</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> </dependency> <dependency> <groupId>org.apache.blur</groupId> <artifactId>blur-thrift</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> </dependency> <dependency> <groupId>commons-logging</groupId> @@ -60,14 +60,14 @@ under the License. <dependency> <groupId>org.apache.blur</groupId> <artifactId>blur-core</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.blur</groupId> <artifactId>blur-util</artifactId> - <version>0.2.2-incubating</version> + <version>0.2.3-incubating</version> <type>test-jar</type> <scope>test</scope> </dependency>
