Difference between revisions of "Developing with Eclipse"

From BaseX Documentation
Jump to navigation Jump to search
Line 12: Line 12:
 
The following packages are available:
 
The following packages are available:
 
# [https://github.com/BaseXdb/basex basex] is the main project
 
# [https://github.com/BaseXdb/basex basex] is the main project
# [https://github.com/BaseXdb/basex-api basex-api] contains the BaseX APIs (JAX-RX, XQJ, XMLDB, and bindings in other languages)  
+
# [https://github.com/BaseXdb/basex-api basex-api] contains the BaseX APIs (REST, WebDAV, XQJ, XMLDB, and bindings in other languages)  
 
# [https://github.com/BaseXdb/basex-examples basex-examples] demonstrates some use cases for BaseX   
 
# [https://github.com/BaseXdb/basex-examples basex-examples] demonstrates some use cases for BaseX   
 
# [https://github.com/BaseXdb/jax-rx jax-rx] contains the JAX-RX Interface
 
# [https://github.com/BaseXdb/jax-rx jax-rx] contains the JAX-RX Interface

Revision as of 17:22, 12 September 2011

Prerequisites

  • BaseX is being developed with the Eclipse environment. Other IDEs are used as well in our community, but are not supported by our team.
  • The EGit plugin can be used to check out the latest sources from our repository within Eclipse.
  • For additional comfort and to work with packages other than the main project, the m2eclipse plugin is required, which adds Maven support to Eclipse.
  • Additional coding guidelines are defined via Checkstyle and can be integrated with the eclipse-cs plugin.

Check Out

To get some help on how to check out BaseX and its sub projects from GitHub (https://github.com/BaseXdb), please have a look at our GIT Tutorial.

The following packages are available:

  1. basex is the main project
  2. basex-api contains the BaseX APIs (REST, WebDAV, XQJ, XMLDB, and bindings in other languages)
  3. basex-examples demonstrates some use cases for BaseX
  4. jax-rx contains the JAX-RX Interface

Start

  1. Press RunRun…
  2. Create a new "Java Application" launch configuration
  3. Select "basex" as "Project"
  4. Choose a "Main class" (e.g., org.basex.BaseXGUI for the graphical user interface)
  5. Launch the project via Run

Using Maven

If the standalone version of Maven is installed, you can run mvn compile in the project directory to compile BaseX.

Should you wish to create / package your own jars you can do so by running mvn package. By adding the flag -DskipTests=true you can skip running the JUnit-tests.

Type in java -cp target/classes/org.basex.BaseX to run BaseX.

You can launch the following classes, which are all placed in the org.basex main package:

BaseX
standalone (embedded) mode
BaseXServer
server instance, waiting for requests
BaseXClient
client instance, interacting with the server
BaseXGUI
graphical user interface

Moreover, try -h to have a look at the available command-line options. For example, you can evaluate XQuery expressions or process database commands without entering the console.