<dependency>
<groupId>com.complexible.stardog</groupId>
<artifactId>stardog-groovy</artifactId>
<version>4.1</version>
<exclusions>
<exclusion>
<groupId>com.complexible.stardog</groupId>
<artifactId>client-snarl</artifactId>
</exclusion>
<exclusion>
<groupId>com.complexible.stardog</groupId>
<artifactId>client-http</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.complexible.stardog.utils</groupId>
<artifactId>stardog-utils-common</artifactId>
<version>4.1.2</version>
</dependency>
<dependency>
<groupId>com.complexible.stardog</groupId>
<artifactId>server</artifactId>
<version>4.1.2</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.complexible.stardog</groupId>
<artifactId>client-snarl</artifactId>
<version>4.1.2</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.complexible.stardog</groupId>
<artifactId>client-http</artifactId>
<version>4.1.2</version>
<type>pom</type>
<exclusions>
<exclusion>
<groupId>org.openrdf.sesame</groupId>
<artifactId>sesame-rio</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.openrdf.sesame</groupId>
<artifactId>sesame-rio-api</artifactId>
<version>4.1.2</version>
</dependency>
It won't build if I don't exclude the client-http and client-snarl from the groovy dependency and load them separately.
Secondly, when I run an app and attempt to connect to the database I get the following exception: "com.complexible.stardog.StardogException: No driver was found which supports the connection string: 'localhost:5820/testdb', please double-check the URL and verify the protocol is correct and try again."
A lot of your forum posts mention a mavenInstall script, which I assume loads the core dependencies, but I no longer see that in the distribution. Am I missing something?
Cheers,
--Paul