diff --git a/build.gradle b/build.gradle index 7dc5873..8c0db4f 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,12 @@ repositories { dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' + implementation 'org.springframework.boot:spring-boot-starter-data-jpa' + implementation 'com.h2database:h2:2.1.210' + implementation group: 'org.springdoc', name: 'springdoc-openapi-ui', version: '1.6.5' testImplementation 'org.springframework.boot:spring-boot-starter-test' + compileOnly('javax.persistence:javax.persistence-api:2.2') + implementation 'org.springframework.boot:spring-boot-starter-web' } tasks.named('test') {