Difference between revisions of "Developing with Eclipse"

From BaseX Documentation
Jump to navigation Jump to search
(13 intermediate revisions by 3 users not shown)
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 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>
 +
| [https://marketplace.eclipse.org/marketplace-client-intro?mpc_install=150 install]
 
|-
 
|-
| [http://findbugs.sourceforge.net FundBugs]
+
| [https://spotbugs.github.io/ SpotBugs]
 
| Analyze project at byte code level
 
| Analyze project at byte code level
| <code><nowiki>http://findbugs.cs.umd.edu/eclipse</nowiki></code>
+
| <code><nowiki>https://spotbugs.github.io/eclipse/</nowiki></code>
 +
| [https://marketplace.eclipse.org/marketplace-client-intro?mpc_install=3519199 install]
 
|-
 
|-
| [http://www.eclipse.org/eclipse/platform-core/downloads.php Core Tools]
+
| [http://www.ucdetector.org/ UCDetector]
| Find dead (unreferenced) code.
+
| Unnecessary code detector
| <code><nowiki>http://eclipse.org/eclipse/platform-core/updates</nowiki></code>
+
| <code><nowiki>http://ucdetector.sourceforge.net/update</nowiki></code>
|-
+
| [https://marketplace.eclipse.org/marketplace-client-intro?mpc_install=661 install]
| [http://www.eclemma.org/ EclEmma]
 
| Code coverage tool.
 
| <code><nowiki>http://update.eclemma.org/</nowiki></code>
 
 
|}
 
|}
  
Line 42: Line 42:
 
# {{Code|basex-tests}} contains several unit and stress tests
 
# {{Code|basex-tests}} contains several unit and stress tests
  
If the problems view shows a list of warning, you may need to switch to Java 6 (''Windows'' → ''Preferences'' → ''Installed JREs'').
+
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.
 
 
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==
 
==Start in Eclipse==
Line 56: Line 53:
 
==Alternative==
 
==Alternative==
  
You may as well use the standalone version of [[Maven]] to compile and run the project, use other IDEs such as [http://www.jetbrains.com/idea IntelliJ IDEA].
+
You may as well use the standalone version of [[Maven]] to compile and run the project, use other IDEs such as [https://www.jetbrains.com/idea/ IntelliJ IDEA].
  
  
 
[[Category:Developer]]
 
[[Category:Developer]]

Revision as of 12:38, 2 July 2020

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/ install
SpotBugs Analyze project at byte code level https://spotbugs.github.io/eclipse/ install
UCDetector Unnecessary code detector http://ucdetector.sourceforge.net/update install

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:

  1. basex-core is the main project
  2. basex-api contains the BaseX APIs (XML:DB, bindings in other languages) and HTTP Services (REST, RESTXQ, WebDAV)
  3. basex-examples includes some examples code for BaseX
  4. basex-tests contains several unit and stress tests

If the "Problems" View contains errors or warnings, you may need to switch to Java 7 (WindowsPreferencesInstalled 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

  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

Alternative

You may as well use the standalone version of Maven to compile and run the project, use other IDEs such as IntelliJ IDEA.