-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
97 lines (85 loc) · 3.4 KB
/
build.gradle
File metadata and controls
97 lines (85 loc) · 3.4 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
plugins {
id 'java'
id 'org.springframework.boot' version '3.4.3'
id 'io.spring.dependency-management' version '1.1.7'
id 'jacoco' // JaCoCo 플러그인 추가
id 'org.sonarqube' version '4.3.1.3277' // SonarQube 플러그인 추가
}
group = 'com'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
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'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly 'com.mysql:mysql-connector-j'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.5.0' // swagger
implementation 'software.amazon.awssdk:s3:2.25.14' // aws s3 (버전 체크 필요)
implementation 'com.auth0:java-jwt:4.4.0'
implementation 'com.google.guava:guava:32.1.2-jre'
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'com.querydsl:querydsl-jpa:5.0.0:jakarta'
annotationProcessor "com.querydsl:querydsl-apt:5.0.0:jakarta"
implementation "com.querydsl:querydsl-collections:5.0.0"
annotationProcessor "jakarta.annotation:jakarta.annotation-api"
annotationProcessor "jakarta.persistence:jakarta.persistence-api"
}
tasks.withType(Test).configureEach {
useJUnitPlatform()
finalizedBy jacocoTestReport
}
jacoco {
toolVersion = "0.8.10" // 최신 JaCoCo 버전 사용
}
tasks.jacocoTestReport { // 이미 존재하는 태스크를 설정
dependsOn test // 테스트 실행 후 실행되도록 설정
reports {
xml.required = true
html.required = true
}
afterEvaluate {
classDirectories.setFrom(
files(classDirectories.files.collect {
fileTree(dir: it, exclude: [
'**/core/**',
'**/accountBook/adapter/in/web/*Controller*',
'**/question/adapter/in/web/*Controller*',
'**/receipt/adapter/in/web/*Controller*',
'**/user/adapter/in/web/*Controller*'
])
})
)
}
}
tasks.register("uploadCoverageToCodecov", Exec) {
dependsOn jacocoTestReport
commandLine 'bash', '-c', "bash <(curl -s https://codecov.io/bash) -t ${System.getenv('CODECOV_TOKEN')} -f build/reports/jacoco/test/jacocoTestReport.xml"
}
sonar {
properties {
property "sonar.projectKey", "Club-Account_ClubAccount-BE"
property "sonar.organization", "club-account"
property "sonar.host.url", "https://sonarcloud.io"
property "sonar.coverage.jacoco.xmlReportPaths", "build/reports/jacoco/test/jacocoTestReport.xml"
// ✅ SonarQube에 JaCoCo 리포트 연결
}
}