-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
61 lines (49 loc) · 2.15 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.6'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
dependencies {
//[ Basic Frames ]
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-web' // web
implementation 'org.springframework.boot:spring-boot-starter-data-jpa' //jpa
implementation 'org.springframework.boot:spring-boot-starter-security' //security
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-websocket'
testImplementation 'org.springframework.boot:spring-boot-starter-test' //test
implementation 'org.projectlombok:lombok' //lombok
annotationProcessor 'org.projectlombok:lombok' //lombok
runtimeOnly 'mysql:mysql-connector-java:8.0.27' //mysql
developmentOnly 'org.springframework.boot:spring-boot-devtools' //devtools
//[ Java JWT ]
implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.2'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.2'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.2'
//[ Swagger ]
//https://springdoc.org/v2/
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.4'
implementation 'org.hibernate.validator:hibernate-validator:8.0.0.Final'
// [ H2 ]
runtimeOnly 'com.h2database:h2'
//[ Mail ]
implementation 'org.springframework.boot:spring-boot-starter-mail'
// Spring Cloud Starter AWS
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
// Gson
implementation 'com.google.code.gson:gson:2.8.5'
// QueryDsl
implementation 'com.querydsl:querydsl-jpa:5.0.0:jakarta'
annotationProcessor "com.querydsl:querydsl-apt:5.0.0:jakarta"
annotationProcessor "jakarta.annotation:jakarta.annotation-api"
annotationProcessor "jakarta.persistence:jakarta.persistence-api"
}
tasks.named('test') {
useJUnitPlatform()
}