Skip to content

Instantly share code, notes, and snippets.

@nikos
Created December 12, 2014 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nikos/91c4f32201978cc18718 to your computer and use it in GitHub Desktop.
Save nikos/91c4f32201978cc18718 to your computer and use it in GitHub Desktop.
Access MarkLogic 8 EA Java Client API via github's maven repository
<?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>
@zygimantus
Copy link

How does github.com/marklogic/java-client-api/mvn-repo work if client-api-java project does not event have mvn-repo fork?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment