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
source
share