This project acts as Spring Boot starter for web applications which want to leverage the MarkLogic database server as their central repository for storing and searching data and documents.
To make use of the Spring Boot starter for MarkLogic in your
own Maven-based project, please add in the dependencies
section the following dependency:
<dependency>
<groupId>de.nava</groupId>
<artifactId>spring-boot-starter-marklogic</artifactId>
<version>0.1.3</version>
</dependency>
Add the following section to your repositories
element to allow Maven
to retrieve the POM and jar file via github:
<repository>
<id>nikos-spring-boot-starter-marklogic</id>
<url>https://raw.github.com/nikos/spring-boot-starter-marklogic/mvn-repo/</url>
</repository>
Inside your dependencies
please add
compile("de.nava:spring-boot-starter-marklogic:0.1.3")
Pluse add the link to the location where to resolve this dependency as
part of repositories
section:
maven { url "https://raw.github.com/nikos/spring-boot-starter-marklogic/mvn-repo/" }
If you are interested in a real-world project making use of the MarkLogic Spring Boot starter please visit the wm14 github project.