-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (32 loc) · 1.11 KB
/
build.gradle
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
36
37
plugins {
id 'org.springframework.boot' version '2.7.4'
id 'io.spring.dependency-management' version '1.0.14.RELEASE'
id 'java'
}
group = 'com.ozgurbaybas'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.7.3'
implementation 'org.springframework.boot:spring-boot-starter-security:2.7.3'
implementation 'org.springframework.boot:spring-boot-starter-web:2.7.3'
implementation 'org.springframework.boot:spring-boot-starter-validation:2.7.3'
implementation group: 'org.springdoc', name: 'springdoc-openapi-ui', version: '1.6.14'
implementation 'io.jsonwebtoken:jjwt:0.9.1'
runtimeOnly 'org.postgresql:postgresql:42.5.0'
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.7.3'
testImplementation 'org.springframework.security:spring-security-test:5.7.3'
}
tasks.named('test') {
useJUnitPlatform()
}