wheaties
wheaties

Reputation: 35980

There a repository for Eclipse project jars?

There's a project within the Eclipse Foundation, DevTools, which holds a sub-project, SqlTools, which contains a few libraries related to parsing SQL. I'd like to be able to link those libraries to my own project. I just can't for the life of me figure out the right terms to Google to find some repository for those jars.

I've found the source code alright and cloned the git repository but that's source code. I'd like to avoid hosting not only my own project's jars but any dependency it might have. Anyone know where to get these? Already reached out to the mailing list but am impatient. I've finally got free time to hack on the weekend for my own interests...

Upvotes: 2

Views: 112

Answers (3)

Rifat
Rifat

Reputation: 7728

I use this one - http://search.maven.org/#browse

Better look. Clean, slick and more user friendly :)

Upvotes: 2

Paul Webster
Paul Webster

Reputation: 10654

The jars are published in a p2 repository. http://download.eclipse.org/datatools/updates

A content.jar file describes the repo, and the actual jars are in http://download.eclipse.org/datatools/updates/plugins

There is a nexus instance at http://maven.eclipse.org/nexus/index.html that contains some sqltools jars, but publishing jars to maven.eclipse.org is still under construction.

Upvotes: 2

Rob Kielty
Rob Kielty

Reputation: 8152

I use mvnrepository.com to search for libraries.

http://mvnrepository.com/search.html?query=Eclipse

Upvotes: 1

Related Questions