-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (30 loc) · 992 Bytes
/
build.gradle
File metadata and controls
35 lines (30 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
plugins {
id 'org.springframework.boot' version '2.5.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.suru'
version = '1.0'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web:2.7.4'
implementation 'org.springframework.boot:spring-boot-starter-actuator:2.7.4'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.7.4'
implementation 'org.springframework.boot:spring-boot-starter-validation:2.7.4'
implementation 'org.flywaydb:flyway-core:9.4.0'
compileOnly 'org.projectlombok:lombok:1.18.24'
runtimeOnly 'org.postgresql:postgresql:42.5.0'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.7.4'
}
test {
useJUnitPlatform()
}