H2 Database Engine Maven Dependency - RameshMF/java-json-processing-tutorial GitHub Wiki

H2 Database Engine

H2 Database Engine Maven Dependency

Copy below H2 Database Engine maven dependency and paste in your project pom.xml file:

<!-- https://mvnrepository.com/artifact/com.h2database/h2 -->
<dependency>
    <groupId>com.h2database</groupId>
    <artifactId>h2</artifactId>
    <version>1.4.200</version>
    <scope>test</scope>
</dependency>

H2 Database Engine Gradle Dependency

Copy below H2 Database Engine gradle dependency and paste in your project build.gradle file:

// https://mvnrepository.com/artifact/com.h2database/h2
testCompile group: 'com.h2database', name: 'h2', version: '1.4.200'

Download JAR File

https://repo1.maven.org/maven2/com/h2database/h2/1.4.200/h2-1.4.200.jar

Check for Latest Release

https://mvnrepository.com/artifact/com.h2database/h2

Reference

https://mvnrepository.com/artifact/com.h2database/h2

⚠️ **GitHub.com Fallback** ⚠️