Difference between revisions of "Developing with Eclipse"

From BaseX Documentation
Jump to navigation Jump to search
Line 11: Line 11:
 
==Check Out==
 
==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|GIT Tutorial]].
+
To get some help on how to check out BaseX and its sub projects from the [https://github.com/BaseXdb GitHub Repositories], and how to optionally use BaseX on command line, please have a look at our [[Git|Git Tutorial]].
  
The following packages are available:
+
The following repositories 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 (REST, WebDAV, 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] includes some examples code for BaseX
# [https://github.com/BaseXdb/basex-tests basex-tests] contains several coorectness and stress tests
+
# [https://github.com/BaseXdb/basex-tests basex-tests] contains several correctness and stress tests
  
 
==Start==
 
==Start==
#Press ''Run'' → ''Run…''
+
# Press ''Run'' → ''Run…''
#Create a new "Java Application" launch configuration  
+
# Create a new "Java Application" launch configuration  
#Select "basex" as "Project"  
+
# Select "basex" as "Project"  
#Choose a "Main class" (e.g., <code>org.basex.BaseXGUI</code> for the graphical user interface)  
+
# Choose a "Main class" (e.g., <code>org.basex.BaseXGUI</code> for the graphical user interface)  
#Launch the project via ''Run''
+
# Launch the project via ''Run''
  
 
[[Category:Developer]]
 
[[Category:Developer]]

Revision as of 05:22, 22 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.
  • Other Eclipse plugins we frequently use are FindBugs to analyze Java byte code, and Core Tools to find unreferenced members.

You may as well use the standalone version of Maven to compile and run the project.

Check Out

To get some help on how to check out BaseX and its sub projects from the GitHub Repositories, and how to optionally use BaseX on command line, please have a look at our Git Tutorial.

The following repositories 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 includes some examples code for BaseX
  4. basex-tests contains several correctness and stress tests

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