summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorSzymon Szukalski <szymon@skas.io>2024-07-23 23:19:45 +1000
committerSzymon Szukalski <szymon@skas.io>2024-07-23 23:19:45 +1000
commitfa34f76ad8ebccb96012b45a4207532846cfa03f (patch)
treee11e7a675d8d23a4921be505cec16b735abbd23d /pom.xml
parent6964e0bc8578abcbdf7e49ffa36c49197df67787 (diff)
Define JPA entities and repositories and H2 DB
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 491fe0d..0281f72 100644
--- a/pom.xml
+++ b/pom.xml
@@ -59,6 +59,16 @@
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-data-jpa</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>com.h2database</groupId>
+ <artifactId>h2</artifactId>
+ <scope>runtime</scope>
+ </dependency>
</dependencies>
<build>