forked from team-kit-community/kit_ce_board_backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
74 lines (67 loc) · 2.39 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
66
67
68
69
70
71
72
73
74
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.4'
id 'io.spring.dependency-management' version '1.1.4'
}
group = 'com.creativedesignproject'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
//Prometheus
implementation 'io.micrometer:micrometer-registry-prometheus'
//Actuator
implementation 'org.springframework.boot:spring-boot-starter-actuator'
//Mail
implementation 'org.springframework.boot:spring-boot-starter-mail'
//Security
implementation 'org.springframework.security:spring-security-crypto'
//Validation
implementation 'org.springframework.boot:spring-boot-starter-validation'
//Web
implementation 'org.springframework.boot:spring-boot-starter-web'
//AOP
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-aop', version: '3.1.2'
//Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
//MySQL
runtimeOnly 'com.mysql:mysql-connector-j'
// JPA
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
//Test
testImplementation 'org.springframework.boot:spring-boot-starter-test' // Spring Boot Test
testImplementation 'org.springframework.security:spring-security-test' //Spring Security Test
testImplementation 'org.projectlombok:lombok' // Lombok for testing
testAnnotationProcessor 'org.projectlombok:lombok' // Lombok for testing
//Filter
compileOnly group: 'javax.servlet', name: 'javax.servlet-api', version: '3.0.1'
//JWT
implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.2'
implementation group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.2'
implementation group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.2'
//Selenium
implementation group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '4.18.1'
//Jsoup
implementation group: 'org.jsoup', name: 'jsoup', version: '1.17.2'
//QueryDSL
implementation 'com.querydsl:querydsl-jpa:5.0.0:jakarta'
annotationProcessor "com.querydsl:querydsl-apt:${dependencyManagement.importedProperties['querydsl.version']}:jakarta"
annotationProcessor "jakarta.annotation:jakarta.annotation-api"
annotationProcessor "jakarta.persistence:jakarta.persistence-api"
}
tasks.named('test') {
useJUnitPlatform()
}
clean {
delete file('src/main/generated')
}