Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Getting error pulling maven deps #49

Closed
ont-app opened this issue May 26, 2023 · 2 comments
Closed

Getting error pulling maven deps #49

ont-app opened this issue May 26, 2023 · 2 comments
Labels
question Further information is requested

Comments

@ont-app
Copy link

ont-app commented May 26, 2023

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
Copy link
Contributor

sszuev commented May 26, 2023

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.)

@ont-app
Copy link
Author

ont-app commented May 26, 2023

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!

@sszuev sszuev added the question Further information is requested label May 27, 2023
@sszuev sszuev closed this as completed Jul 12, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants