[Edit]
+
0
-
0
Spring Boot - H2 database Maven dependency (current H2 version as embedded in production bundle)
1 2 3 4 5 6 7 8 9<dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <!-- unset <version> causes the current version of H2 to be used --> <scope>compile</scope> <!-- set <scope> as `compile` causes H2 dependency embedding in production bundle --> </dependency> <!-- Hint: to know how to configure H2 database in application.properties go to https://dirask.com/snippets/1b3N9D -->