diff options
| author | Szymon Szukalski <szymon@skas.io> | 2024-07-23 23:19:45 +1000 |
|---|---|---|
| committer | Szymon Szukalski <szymon@skas.io> | 2024-07-23 23:19:45 +1000 |
| commit | fa34f76ad8ebccb96012b45a4207532846cfa03f (patch) | |
| tree | e11e7a675d8d23a4921be505cec16b735abbd23d /pom.xml | |
| parent | 6964e0bc8578abcbdf7e49ffa36c49197df67787 (diff) | |
Define JPA entities and repositories and H2 DB
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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> |
