owlcs/ont-api

Getting error pulling maven deps

Closed this issue · 2 comments

This error is being generated when I execute the clojure command-line clj -X:deps tree after including this project as a dependency.

Error generating tree: Could not find artifact com.github.sszuev:concurrent-rdf-graph:jar:1.0.0 in central (https://repo1.maven.org/maven2/)

Version 3.0.4

sszuev commented

Hello

Currently, concurrent-rdf-graph is published in jitpack , not maven-central.
For maven project need to add additional repo:

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

Perhaps there is a similar way in the clojure ecosystem?

(Maybe for the next release it is worth rewriting concurrent-rdf-graph in java and publishing it in maven-central.)

Ah. Yes this is the configuration:

{
   :mvn/repos {"jitpack.io" {:url "https://jitpack.io"}}
   :deps
   {  ...
      com.github.owlcs/ontapi {:mvn/version "3.0.4"}
      ...
    }
  ...
}

Thanks! That fixed my problem!