Difference between revisions of "Developing with Eclipse"
(Draggable quick-install links for marketplace.) |
|||
Line 14: | Line 14: | ||
! Description | ! Description | ||
! Update URL | ! Update URL | ||
+ | ! Eclipse Marketplace | ||
|- | |- | ||
| [http://eclipse-cs.sourceforge.net eclipse-cs] | | [http://eclipse-cs.sourceforge.net eclipse-cs] | ||
| Enforces Checkstyle coding standards. | | Enforces Checkstyle coding standards. | ||
| <code><nowiki>http://eclipse-cs.sf.net/update/</nowiki></code> | | <code><nowiki>http://eclipse-cs.sf.net/update/</nowiki></code> | ||
+ | | [http://marketplace.eclipse.org/marketplace-client-intro?mpc_install=150 http://marketplace.eclipse.org/sites/all/themes/solstice/_themes/solstice_marketplace/public/images/btn-install.png] | ||
|- | |- | ||
| [http://findbugs.sourceforge.net FindBugs] | | [http://findbugs.sourceforge.net FindBugs] | ||
| Analyze project at byte code level | | Analyze project at byte code level | ||
| <code><nowiki>http://findbugs.cs.umd.edu/eclipse</nowiki></code> | | <code><nowiki>http://findbugs.cs.umd.edu/eclipse</nowiki></code> | ||
+ | | [http://marketplace.eclipse.org/marketplace-client-intro?mpc_install=1099 http://marketplace.eclipse.org/sites/all/themes/solstice/_themes/solstice_marketplace/public/images/btn-install.png] | ||
|- | |- | ||
| [http://www.ucdetector.org/ UCDetector] | | [http://www.ucdetector.org/ UCDetector] | ||
| Unnecessary code detector | | Unnecessary code detector | ||
| <code><nowiki>http://ucdetector.sourceforge.net/update</nowiki></code> | | <code><nowiki>http://ucdetector.sourceforge.net/update</nowiki></code> | ||
+ | | [http://marketplace.eclipse.org/marketplace-client-intro?mpc_install=661 http://marketplace.eclipse.org/sites/all/themes/solstice/_themes/solstice_marketplace/public/images/btn-install.png] | ||
|- | |- | ||
| [http://www.eclemma.org/ EclEmma] | | [http://www.eclemma.org/ EclEmma] | ||
| Code coverage tool. | | Code coverage tool. | ||
| <code><nowiki>http://update.eclemma.org/</nowiki></code> | | <code><nowiki>http://update.eclemma.org/</nowiki></code> | ||
+ | | [http://marketplace.eclipse.org/marketplace-client-intro?mpc_install=264 http://marketplace.eclipse.org/sites/all/themes/solstice/_themes/solstice_marketplace/public/images/btn-install.png] | ||
|} | |} | ||
Revision as of 13:53, 2 January 2016
This page is part of the Developer Section. It describes how to get the BaseX sources compiled and running on your system.
Another article in the documentation describes how to use BaseX as a query processor in Eclipse.
Prerequisites
BaseX is developed with the Eclipse environment (other IDEs like IntelliJ IDEA can be used as well). The Eclipse IDE for Java Developers includes the EGit plugin (for Git) and the m2e plugin (for Maven).
Other Eclipse plugins we use are:
Name | Description | Update URL | Eclipse Marketplace |
---|---|---|---|
eclipse-cs | Enforces Checkstyle coding standards. | http://eclipse-cs.sf.net/update/
|
![]() |
FindBugs | Analyze project at byte code level | http://findbugs.cs.umd.edu/eclipse
|
![]() |
UCDetector | Unnecessary code detector | http://ucdetector.sourceforge.net/update
|
![]() |
EclEmma | Code coverage tool. | http://update.eclemma.org/
|
![]() |
Check Out
Our Git Tutorial explains how BaseX can be checked out from the GitHub Repository and embedded in Eclipse with EGit. The article also demonstrates how git can be used on command-line.
The basex repository contains the following sub-directories:
basex-core
is the main projectbasex-api
contains the BaseX APIs (XML:DB, bindings in other languages) and HTTP Services (REST, RESTXQ, WebDAV)basex-examples
includes some examples code for BaseXbasex-tests
contains several unit and stress tests
If the "Problems" View contains errors or warnings, you may need to switch to Java 7 (Windows → Preferences → Installed JREs). With the Maven plugin from Eclipse, it sometimes requires several attempts to get all dependencies updated. This loop can be avoided if the sources are precompiled via Maven on command-line.
Start in Eclipse
- Press Run → Run…
- Create a new "Java Application" launch configuration
- Select "basex" as "Project"
- Choose a "Main class" (e.g.,
org.basex.BaseXGUI
for the graphical user interface) - Launch the project via Run
Alternative
You may as well use the standalone version of Maven to compile and run the project, use other IDEs such as IntelliJ IDEA.