Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what are the coordinates of Berkeley DB JE 5.0.x in Maven Central?

What are the coordinates of Berkeley DB JE 5.0.x in Maven Central (or some other repo maybe)?

like image 767
yegor256 Avatar asked Apr 10 '12 19:04

yegor256


2 Answers

The link given by Shaun Hare (Oracle's bdb download page) now holds an example Maven configuration accessing Oracle's Maven repo.

Following that example I included the bdb je by adding Oracle's repository directly. If you're using a repository manager such as Nexus, you might include the repository there instead:

<dependencies>
  <dependency>
    <groupId>com.sleepycat</groupId>
    <artifactId>je</artifactId>
    <version>5.0.58</version>
  </dependency>
</dependencies>

<repositories>
  <repository>
    <id>oracleReleases</id>
    <name>Oracle Released Java Packages</name>
    <url>http://download.oracle.com/maven</url>
    <releases>
      <enabled>true</enabled>
    </releases>
    <snapshots />
  </repository>
</repositories>

Edit: Repaired broken hyperlinks

like image 138
Simon Hellinger Avatar answered Nov 14 '22 22:11

Simon Hellinger


See here http://www.oracle.com/technetwork/database/berkeleydb/downloads/maven-087630.html

so http://mvnrepository.com/artifact/com.sleepycat/je/4.0.92

Edit sorry wrong version I suggest

wget http://download.oracle.com/maven/com/sleepycat/je/5.0.34/je-5.0.34{.jar,.jar.md5,.jar.sha1,.pom,.pom.md5,.pom.sha1,-sources.jar,-sources.jar.md5,-sources.jar.sha1,-javadoc.jar,-javadoc.jar.md5,-javadoc.jar.sha1}

and upload to own repo

o

like image 43
Shaun Hare Avatar answered Nov 14 '22 21:11

Shaun Hare