diff options
author | Adrián Oliva <adrian.oliva@cimat.mx> | 2023-05-25 13:20:15 -0600 |
---|---|---|
committer | Adrián Oliva <adrian.oliva@cimat.mx> | 2023-05-25 13:20:15 -0600 |
commit | 0092d821aeca201321fd87b704ef0ad674f0d95b (patch) | |
tree | ad538c157c6c5f3a4b9299eae93c05b0c5529952 /pom.xml | |
parent | 70381b3187aab32d4facb74d327ac79bbc2669ba (diff) | |
download | ToDo-App-BE-0092d821aeca201321fd87b704ef0ad674f0d95b.tar.gz ToDo-App-BE-0092d821aeca201321fd87b704ef0ad674f0d95b.zip |
Added GET endpoint to list to dos.
Currently the directory is /v1/todos. It'll retrieve a list of all
to dos.
Diffstat (limited to '')
-rw-r--r-- | pom.xml | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -18,6 +18,11 @@ </properties> <dependencies> <dependency> + <groupId>org.springframework.data</groupId> + <artifactId>spring-data-jpa</artifactId> + </dependency> + + <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> </dependency> |