Created
June 6, 2015 01:09
-
-
Save AlBaker/ba737f9a99785e5b3a28 to your computer and use it in GitHub Desktop.
stardog project maven pom.xml
This file contains hidden or 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"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>stardog-maven</groupId> | |
<artifactId>stardog</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<dependencies> | |
<dependency> | |
<groupId>com.complexible.stardog</groupId> | |
<artifactId>client-http</artifactId> | |
<version>3.1</version> | |
<type>pom</type> | |
</dependency> | |
<dependency> | |
<groupId>com.complexible.stardog</groupId> | |
<artifactId>client-snarl</artifactId> | |
<version>3.1</version> | |
<type>pom</type> | |
</dependency> | |
<dependency> | |
<groupId>com.complexible.stardog</groupId> | |
<artifactId>server</artifactId> | |
<version>3.1</version> | |
<exclusions> | |
<exclusion> | |
<groupId>com.complexible</groupId> | |
<artifactId>annex</artifactId> | |
</exclusion> | |
</exclusions> | |
<type>pom</type> | |
</dependency> | |
<dependency> | |
<groupId>com.complexible.stardog</groupId> | |
<artifactId>stardog-spring</artifactId> | |
<version>3.1.0</version> | |
<exclusions> | |
<exclusion> | |
<groupId>org.openrdf.sesame</groupId> | |
<artifactId>sesame</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>com.complexible.stardog</groupId> | |
<artifactId>client-http</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>com.complexible.stardog</groupId> | |
<artifactId>client-snarl</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>com.complexible.annex</groupId> | |
<artifactId>annex</artifactId> | |
<version>0.6.4</version> | |
<exclusions> | |
<exclusion> | |
<groupId>com.complexible.stardog</groupId> | |
<artifactId>server</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>com.complexible.stardog</groupId> | |
<artifactId>client-http</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>com.complexible.stardog</groupId> | |
<artifactId>client-snarl</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
</dependencies> | |
<repositories> | |
<repository> | |
<id>stardog-public</id> | |
<url>http://maven.stardog.com</url> | |
</repository> | |
</repositories> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello Albaker,
thank you for this, it really helps !
I was wondering if you try to update the Stardog dependencies to version 4.x?
I am having some issues with Exception in thread "main" java.lang.NoClassDefFoundError: org/openrdf/model/IRI
Just checking if you updated and had similar errors.
Thank you