Apache Derby Maven Dependency

This page gives you a quick reference to get Apache Derby dependency for Maven or Gradle projects. You can also download the Apache Derby jar dependency, the link given at the "Download JAR File" section.

It contains the core Apache Derby database engine, which also includes the embedded JDBC driver.

Apache Derby Database Engine and Embedded JDBC Driver Maven Dependency

Copy below Apache Derby Database Engine and Embedded JDBC Driver maven dependency and paste in your project pom.xml file:
<!-- https://mvnrepository.com/artifact/org.apache.derby/derby -->
<dependency>
    <groupId>org.apache.derby</groupId>
    <artifactId>derby</artifactId>
    <version>10.15.1.3</version>
    <scope>test</scope>
</dependency>
For more details about the proper version to use, check out the following Maven Central link.

Apache Derby Database Engine and Embedded JDBC Driver Gradle Dependency

Copy below Apache Derby Database Engine and Embedded JDBC Driver Gradle dependency and paste in your project build.gradle file:
// https://mvnrepository.com/artifact/org.apache.derby/derby
testCompile group: 'org.apache.derby', name: 'derby', version: '10.15.1.3'

Download JAR File

Check for Latest Release

Reference



Comments