Coffee_Preorder/backend/build.gradle

30 lines
699 B
Groovy
Raw Normal View History

2023-12-12 16:09:47 +04:00
plugins {
id 'java'
2023-12-23 23:53:41 +04:00
id 'org.springframework.boot' version '3.2.1'
2023-12-12 16:09:47 +04:00
id 'io.spring.dependency-management' version '1.1.4'
}
group = 'com.kalyshev'
version = '0.0.1-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-devtools'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
2023-12-23 23:53:41 +04:00
implementation 'com.h2database:h2:2.1.212'
2023-12-12 16:09:47 +04:00
implementation 'org.hibernate.validator:hibernate-validator'
2023-12-12 21:05:54 +04:00
implementation 'org.projectlombok:lombok'
2023-12-12 16:09:47 +04:00
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}