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 maybe some other repo)?

+5
source share
2 answers

The link provided by Shaun Hare (Oracle bdb download page ) now contains a Maven configuration example, access to the Oracle Maven repository.

After this example, I turned on bdb je by adding the Oracle repository directly. If you use a storage manager such as Nexus, you can enable the repository 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: Refurbished Broken Hyperlinks

+4
source

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

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

, ,

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}

+1

All Articles