Difference between revisions of "Maven"
Jump to navigation
Jump to search
| Line 5: | Line 5: | ||
<repository> | <repository> | ||
<id>dbis-ukn</id> | <id>dbis-ukn</id> | ||
| − | <name> | + | <name>BaseX Maven Repository</name> |
<url>http://files.basex.org/maven</url> | <url>http://files.basex.org/maven</url> | ||
</repository> | </repository> | ||
Revision as of 21:57, 6 February 2011
As BaseX is offered in a Maven repository, you can easily embed and integrate it into your own projects.
To use the BaseX Maven Artifacts, add the following lines to your
pom.xml file:
<repositories>
<repository>
<id>dbis-ukn</id>
<name>BaseX Maven Repository</name>
<url>http://files.basex.org/maven</url>
</repository>
</repositories>
BaseX Artifact
<dependency> <groupId>org.basex</groupId> <artifactId>basex</artifactId> <version>6.5</version> </dependency>
BaseX API Artifact
...including the JAX-RX, XML:DB XQJ and API:
<dependency> <groupId>org.basex</groupId> <artifactId>basex-api</artifactId> <version>6.5</version> </dependency>