Created
December 12, 2014 17:50
-
-
Save nikos/91c4f32201978cc18718 to your computer and use it in GitHub Desktop.
Access MarkLogic 8 EA Java Client API via github's maven repository
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<!-- ... your maven ceremony goes here ... ---> | |
<dependencies> | |
<!-- MarkLogic Java Client API --> | |
<dependency> | |
<groupId>com.marklogic</groupId> | |
<artifactId>client-api-java</artifactId> | |
<version>3.0.0-EA3</version> | |
</dependency> | |
</dependencies> | |
<repositories> | |
<repository> | |
<id>MarkLogic-mvn-repo</id> | |
<url>https://raw.github.com/marklogic/java-client-api/mvn-repo/</url> | |
<snapshots> | |
<enabled>true</enabled> | |
<updatePolicy>always</updatePolicy> | |
</snapshots> | |
</repository> | |
</repositories> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How does github.com/marklogic/java-client-api/mvn-repo work if client-api-java project does not event have mvn-repo fork?