Kevin Pauli
Kevin Pauli

Reputation: 8885

How to get artifact from maven repository without maven?

First, I am not a maven user. I need this library: https://github.com/ansell/JenaSesame but only the source code is available. The readme shows this information:

Repository

http://openjena.org/repo-dev

Group:      org.openjena 
Artifact:   jena-sesame

But when I browse to that location I get a 404. How can I grab that artifact from that repository? I'm willing to install maven if I have to to get it; I just need the compiled library jars.

I have already searched the maven central repository at http://search.maven.org , and it is not there.

Upvotes: 1

Views: 224

Answers (1)

EdH
EdH

Reputation: 5003

Any publicly-accessible repository should be viewable in a browser, and as such you should be able to download any JAR file contained within. The URL you've listed, openjena.org/repo-dev [1], looks more like a development repository. There are plenty of repositories around the world that are internal repositories, so this looks like one that hasn't been set up for public consumption.

It looks like they have binary releases available for download here: http://www.apache.org/dist/jena/ Have you looked there for what you're after?

[1]: Now a spam domain - visit https://jena.apache.org/ instead.

Upvotes: 4

Related Questions