-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
68 lines (54 loc) · 2.04 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
plugins {
id 'org.springframework.boot' version '2.7.6'
// id 'org.springdoc.openapi-gradle-plugin' version "1.4.0"
id 'io.spring.dependency-management' version '1.1.0'
id 'java'
}
group = 'com.econovation.idp'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// jwt
implementation 'io.jsonwebtoken:jjwt:0.9.1'
// apache commons io
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
// Redis Dependencies - Login, Logout 기능구현
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// Swagger
// implementation 'org.springdoc:springdoc-openapi-security:1.6.11'
// implementation 'org.springdoc:springdoc-openapi-common:1.6.9'
// implementation 'org.springdoc:springdoc-openapi-webmvc-core:1.6.9'
implementation group: 'org.springdoc', name: 'springdoc-openapi-ui', version: '1.6.14'
// Spring Security
implementation 'org.springframework.boot:spring-boot-starter-security'
// Mail Service
implementation 'org.springframework.boot:spring-boot-starter-mail'
// spring data jpa
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
// Spring actuator
implementation 'org.springframework.boot:spring-boot-starter-actuator'
runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
runtimeOnly 'mysql:mysql-connector-java'
compileOnly 'org.projectlombok:lombok'
// implementation 'mysql-connector-java:8.0.22'
// runtimeOnly 'com.h2database:h2:2.1.214'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.mapstruct:mapstruct:1.5.3.Final'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.3.Final'
annotationProcessor 'org.projectlombok:lombok-mapstruct-binding:0.2.0'
jar { enabled = false }
}
tasks.named('test') {
useJUnitPlatform()
}