Difference between revisions of "Developing with Eclipse"
m (→BaseX API Artifact: updated version number) |
m |
||
Line 87: | Line 87: | ||
<version>6.3.4</version> | <version>6.3.4</version> | ||
</dependency></pre> | </dependency></pre> | ||
+ | [[Category:Developer]] |
Revision as of 23:24, 12 December 2010
Contents
Installation
Eclipse Integration
BaseX is being developed with the Eclipse environment. Some style guidelines are integrated in the sources of BaseX; they are being embedded as soon as you open the project.
The Subclipse Plugin is needed to check out the latest sources from our repository. Next, we recommend to use the m2eclipse plugin to add Maven support to Eclipse. Some additional guidelines are defined via Checkstyle and can be integrated with the eclipse-cs plugin.
To checkout BaseX, do the following:
- File » Import
- SVN » Check out Projects from SVN
- Use the repository https://svn.uni-konstanz.de/dbis/basex and click "Browse"
- Choose the project you like:
- Click Finish
Run BaseX with Eclipse
- Press Run » Run…
- Create a new "Java Application" launch configuration
- Select "basex" as "Project"
- Choose a "Main class" (e.g.,
org.basex.BaseXWin
for the graphical user interface) - Launch the project via "Run"
Compile & Run BaseX
If the standalone version of Maven
is installed, you can run mvn compile
in the project directory
to compile BaseX.
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
- console mode
- BaseXServer
- server instance, waiting for requests
- BaseXClient
- console mode, 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.
Integration
As BaseX is offered in a Maven repository, you can easily embed it in your own projects.
In order to use the BaseX Maven Artifacts, add the following lines to your
pom.xml
file:
<repositories> <repository> <id>dbis-ukn</id> <name>DBIS Maven Repository</name> <url>http://www.inf.uni-konstanz.de/dbis/basex/maven</url> </repository> </repositories>
BaseX Artifact
<dependency> <groupId>org.basex</groupId> <artifactId>basex</artifactId> <version>6.3.4</version> </dependency>
BaseX API Artifact
...including the XQJ and XML:DB API:
<dependency> <groupId>org.basex</groupId> <artifactId>basex-api</artifactId> <version>6.3.4</version> </dependency>