Difference between revisions of "Maven"

From BaseX Documentation
Jump to navigation Jump to search
(One intermediate revision by the same user not shown)
Line 1: Line 1:
This page is part of the [[Developer Section]]. It demonstrates how [http://maven.apache.org Maven] is used to compile and run BaseX, and embed it into other projects.
+
This page is part of the [[Developer Section]]. It demonstrates how [https://maven.apache.org Maven] is used to compile and run BaseX, and embed it into other projects.
  
 
==Using Maven==
 
==Using Maven==
Line 22: Line 22:
 
You can easily embed BaseX into your own Maven projects by adding the following XML snippets to your {{Code|pom.xml}} file:
 
You can easily embed BaseX into your own Maven projects by adding the following XML snippets to your {{Code|pom.xml}} file:
  
<syntaxhighlight lang="xml">&lt;repositories&gt;
+
<syntaxhighlight lang="xml"><repositories>
   &lt;repository&gt;
+
   <repository>
     &lt;id&gt;basex&lt;/id&gt;
+
     <id>basex</id>
     &lt;name&gt;BaseX Maven Repository&lt;/name&gt;
+
     <name>BaseX Maven Repository</name>
     &lt;url&gt;http://files.basex.org/maven&lt;/url&gt;
+
     <url>http://files.basex.org/maven</url>
   &lt;/repository&gt;
+
   </repository>
&lt;/repositories&gt;</syntaxhighlight>  
+
</repositories></syntaxhighlight>  
 
   
 
   
 
===BaseX Main Package===  
 
===BaseX Main Package===  
  
<syntaxhighlight lang="xml">&lt;dependency&gt;
+
<syntaxhighlight lang="xml"><dependency>
   &lt;groupId&gt;org.basex&lt;/groupId&gt;
+
   <groupId>org.basex</groupId>
   &lt;artifactId&gt;basex&lt;/artifactId&gt;
+
   <artifactId>basex</artifactId>
   &lt;version&gt;7.6&lt;/version&gt;
+
   <version>7.6</version>
&lt;/dependency&gt;</syntaxhighlight>
+
</dependency></syntaxhighlight>
  
 
===APIs and Services===  
 
===APIs and Services===  
  
 
<p>...including APIs and the [[REST]], [[RESTXQ]] and [[WebDAV]] services:</p>  
 
<p>...including APIs and the [[REST]], [[RESTXQ]] and [[WebDAV]] services:</p>  
<syntaxhighlight lang="xml">&lt;dependency&gt;
+
<syntaxhighlight lang="xml"><dependency>
   &lt;groupId&gt;org.basex&lt;/groupId&gt;
+
   <groupId>org.basex</groupId>
   &lt;artifactId&gt;basex-api&lt;/artifactId&gt;
+
   <artifactId>basex-api</artifactId>
   &lt;version&gt;7.6&lt;/version&gt;
+
   <version>7.6</version>
&lt;/dependency&gt;</syntaxhighlight>
+
</dependency></syntaxhighlight>
  
 
===XQJ API===  
 
===XQJ API===  

Revision as of 09:52, 29 July 2020

This page is part of the Developer Section. It demonstrates how Maven is used to compile and run BaseX, and embed it into other projects.

Using Maven

If you have cloned our repository and installed Maven on your machine, you can run the following commands from all local repository directories:

  • mvn compile: the BaseX source files are compiled.
  • mvn package: JAR archives are created in the target class directory, and all relevant libraries are created in the lib directory. Packaging is useful if you want to use the start scripts.
  • mvn install: the JAR archive is installed to the local repository, and made available to other Maven projects. This is particularly useful if you are compiling a beta version of BaseX, for which no archives exist in the repositories.

By adding the flag -DskipTests you can skip the JUnit tests and speed up packaging. You may as well use Eclipse and m2eclipse to compile the BaseX sources.

There are several alternatives for starting BaseX:

  • type in java -cp target/classes org.basex.BaseX in the basex-core directory to start BaseX on the command-line mode,
  • type in mvn jetty:run in the basex-api directory to start BaseX with Jetty and the HTTP servers,
  • run one of the Start Scripts contained in the etc directory

Artifacts

You can easily embed BaseX into your own Maven projects by adding the following XML snippets to your pom.xml file:

<syntaxhighlight lang="xml"><repositories>

 <repository>
   <id>basex</id>
   <name>BaseX Maven Repository</name>
   <url>http://files.basex.org/maven</url>
 </repository>

</repositories></syntaxhighlight>

BaseX Main Package

<syntaxhighlight lang="xml"><dependency>

 <groupId>org.basex</groupId>
 <artifactId>basex</artifactId>
 <version>7.6</version>

</dependency></syntaxhighlight>

APIs and Services

...including APIs and the REST, RESTXQ and WebDAV services:

<syntaxhighlight lang="xml"><dependency>

 <groupId>org.basex</groupId>
 <artifactId>basex-api</artifactId>
 <version>7.6</version>

</dependency></syntaxhighlight>

XQJ API

The XQJ API is hosted at http://xqj.net:

<syntaxhighlight lang="xml"> <repository>

 <id>xqj</id>
 <name>XQJ Maven Repository</name>
 <url>http://xqj.net/maven</url>

</repository> ... <dependency>

 <groupId>net.xqj</groupId>
 <artifactId>basex-xqj</artifactId>
 <version>1.2.0</version>

</dependency> <dependency>

 <groupId>com.xqj2</groupId>
 <artifactId>xqj2</artifactId>
 <version>0.1.0</version>

</dependency> <dependency>

 <groupId>javax.xml.xquery</groupId>
 <artifactId>xqj-api</artifactId>
 <version>1.0</version>

</dependency> </syntaxhighlight>