You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by mu...@apache.org on 2014/01/28 21:33:43 UTC

git commit: Update source, building site pages and add missing language reference merge.jar

Updated Branches:
  refs/heads/master 2106de2c5 -> f71b0c560


Update source, building site pages and add missing language reference merge.jar


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

Branch: refs/heads/master
Commit: f71b0c5600d2d37f826c1b84e26441931d494d96
Parents: 2106de2
Author: Mujtaba <mu...@apache.org>
Authored: Tue Jan 28 12:33:28 2014 -0800
Committer: Mujtaba <mu...@apache.org>
Committed: Tue Jan 28 12:33:28 2014 -0800

----------------------------------------------------------------------
 phoenix-core/src/site/bin/merge.jar        | Bin 0 -> 1347 bytes
 phoenix-core/src/site/markdown/building.md |   9 +++++++--
 phoenix-core/src/site/markdown/source.md   |   8 ++++++--
 3 files changed, 13 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-phoenix/blob/f71b0c56/phoenix-core/src/site/bin/merge.jar
----------------------------------------------------------------------
diff --git a/phoenix-core/src/site/bin/merge.jar b/phoenix-core/src/site/bin/merge.jar
new file mode 100644
index 0000000..2b329d6
Binary files /dev/null and b/phoenix-core/src/site/bin/merge.jar differ

http://git-wip-us.apache.org/repos/asf/incubator-phoenix/blob/f71b0c56/phoenix-core/src/site/markdown/building.md
----------------------------------------------------------------------
diff --git a/phoenix-core/src/site/markdown/building.md b/phoenix-core/src/site/markdown/building.md
index 92f9a6f..1b6a3f4 100644
--- a/phoenix-core/src/site/markdown/building.md
+++ b/phoenix-core/src/site/markdown/building.md
@@ -1,18 +1,23 @@
 # Building Phoenix Project
 
 Phoenix is a fully mavenized project. That means you can build simply by doing:
+
 ```
- $ mvn package
+$ mvn package
 ```
 
-builds, test and package Phoenix and put the resulting jars (phoenix-[version].jar and phoenix-[version]-client.jar) in the generated target/ directory.
+builds, test and package Phoenix and put the resulting jars (phoenix-[version].jar and phoenix-[version]-client.jar) in the generated phoenix-core/target/ and phoenix-assembly/target/ directories respectively.
 
 To build, but skip running the tests, you can do:
+
 ```
  $ mvn package -DskipTests
 ```
+
 To only build the generated parser (i.e. <code>PhoenixSQLLexer</code> and <code>PhoenixSQLParser</code>), you can do:
+
 ```
+ $ mvn install -DskipTests
  $ mvn process-sources
 ```
 

http://git-wip-us.apache.org/repos/asf/incubator-phoenix/blob/f71b0c56/phoenix-core/src/site/markdown/source.md
----------------------------------------------------------------------
diff --git a/phoenix-core/src/site/markdown/source.md b/phoenix-core/src/site/markdown/source.md
index a2d5467..6792706 100644
--- a/phoenix-core/src/site/markdown/source.md
+++ b/phoenix-core/src/site/markdown/source.md
@@ -1,9 +1,13 @@
 # Source Repository
 
-Source will be moved over to Apache SVN soon! In meanwhile it is available at:
+Apache Phoenix source is available on Apache Git server:
+
+https://git-wip-us.apache.org/repos/asf/incubator-phoenix.git
 
 <hr/>
 
-https://github.com/forcedotcom/phoenix
+Mirror on Github: https://github.com/apache/incubator-phoenix
 
 <hr/>
+
+Related: [Using > Building](building.html)