aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorAdrián Oliva <adrian.oliva@cimat.mx>2023-05-25 13:20:15 -0600
committerAdrián Oliva <adrian.oliva@cimat.mx>2023-05-25 13:20:15 -0600
commit0092d821aeca201321fd87b704ef0ad674f0d95b (patch)
treead538c157c6c5f3a4b9299eae93c05b0c5529952 /pom.xml
parent70381b3187aab32d4facb74d327ac79bbc2669ba (diff)
downloadToDo-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 'pom.xml')
-rw-r--r--pom.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index c2556ba..03ac0bb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>