-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (40 loc) · 1.52 KB
/
Copy pathbuild.gradle
File metadata and controls
45 lines (40 loc) · 1.52 KB
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.0.4'
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'
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'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.3.Final'
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.0.4'
testImplementation 'org.springframework.security:spring-security-test:6.0.2'
implementation 'com.nimbusds:nimbus-jose-jwt:9.30.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.2'
testImplementation 'org.mockito:mockito-core:5.3.1'
}
tasks.named('test') {
useJUnitPlatform()
}