-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
45 lines (40 loc) · 1.56 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
38
39
40
41
42
43
44
45
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.4'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'com.ti.acelera'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:3.0.4'
implementation 'org.springframework.boot:spring-boot-starter-web:3.1.0'
implementation 'org.mapstruct:mapstruct:1.5.3.Final'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.4'
implementation 'org.springframework.boot:spring-boot-starter-validation:3.0.4'
implementation 'org.springframework.boot:spring-boot-starter-security:3.0.4'
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
implementation 'org.springframework.boot:spring-boot-starter-webflux:3.0.4'
compileOnly 'org.projectlombok:lombok:1.18.26'
runtimeOnly 'com.mysql:mysql-connector-j:8.0.32'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5',
'io.jsonwebtoken:jjwt-jackson:0.11.5'
annotationProcessor 'org.projectlombok:lombok:1.18.26'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.3.Final'
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.1.0'
testImplementation 'org.springframework.security:spring-security-test:6.0.2'
implementation 'com.nimbusds:nimbus-jose-jwt:9.30.2'
implementation 'org.apache.commons:commons-text:1.10.0'
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb:3.0.7'
}
tasks.named('test') {
useJUnitPlatform()
}