Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Building Project

mujtabachohan edited this page Dec 6, 2013 · 1 revision

Phoenix is a fully mavenized project. That means you can build simply by doing:

 $ mvn package

builds, test and package Phoenix and put the resulting jars (phoenix-.jar and phoenix--client.jar) in the generated target/ directory.

To build, but skip running the tests, you can do:

 $ mvn package -DskipTests

To only build the generated parser (i.e. PhoenixSQLLexer and PhoenixSQLParser), you can do:

 $ mvn process-sources

To build an Eclipse project, install the m2e plugin and do an File->Import...->Import Existing Maven Projects selecting the root directory of Phoenix.

Clone this wiki locally