Create backend skeleton

This commit is contained in:
Sandra
2022-01-24 19:46:05 +01:00
commit 01627e87b7
14 changed files with 478 additions and 0 deletions

10
backend/api/build.gradle Normal file
View File

@@ -0,0 +1,10 @@
dependencies {
implementation project(':dataaccess')
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springdoc:springdoc-openapi-ui:1.5.12'
}