-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (40 loc) · 1.92 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 '2.7.5'
id 'io.spring.dependency-management' version '1.0.14.RELEASE'
}
group = 'com.desapp'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-rest'
implementation group: 'io.swagger.core.v3', name: 'swagger-annotations', version: '2.2.2'
implementation group: 'org.springdoc', name: 'springdoc-openapi-ui', version: '1.6.11'
implementation group: 'io.springfox', name: 'springfox-swagger2', version: '3.0.0'
implementation group: 'io.springfox', name: 'springfox-swagger-ui', version: '3.0.0'
// testImplementation group: 'com.h2database', name: 'h2', version: '1.3.148'
implementation 'org.hibernate.validator:hibernate-validator:7.0.1.Final'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly group: 'com.h2database', name: 'h2', version: '1.4.193'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.7.4'
compileOnly 'org.projectlombok:lombok:1.18.26'
annotationProcessor 'org.projectlombok:lombok:1.18.26'
testCompileOnly 'org.projectlombok:lombok:1.18.26'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.26'
implementation group: 'org.modelmapper', name: 'modelmapper', version: '3.1.0'
implementation group: 'io.jsonwebtoken', name: 'jjwt', version: '0.9.1'
testImplementation 'com.tngtech.archunit:archunit-junit5:1.0.0'
testImplementation("org.mockito:mockito-core:3.+")
}
tasks.named('test') {
useJUnitPlatform()
}