Skip to content

Commit 90fc0ff

Browse files
committed
fix: 소나큐브 예외 설정
- 중복방지 예외 설정
1 parent 4779b10 commit 90fc0ff

File tree

2 files changed

+16
-18
lines changed

2 files changed

+16
-18
lines changed

chat/build.gradle.kts

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
gradle.settingsEvaluated {
2-
buildCache {
3-
local {
4-
isEnabled = true
5-
directory = File(rootDir, ".gradle/build-cache")
6-
}
7-
}
8-
}
9-
101
plugins {
112
java
123
id("org.springframework.boot") version "3.4.2"
134
id("io.spring.dependency-management") version "1.1.7"
145
id("com.gorylenko.gradle-git-properties") version "2.4.1" // Git 플러그인 추가
6+
id("org.sonarqube") version "4.4.1.3373"
7+
}
8+
9+
sonarqube {
10+
properties {
11+
property("sonar.exclusions", "**/JwtProvider.java,**/JwtAuthenticationFilter.java,...")
12+
property("sonar.duplication.exclusions", "**/JwtProvider.java,**/JwtAuthenticationFilter.java,...")
13+
}
1514
}
1615

1716
group = "org.example"

default/build.gradle.kts

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
gradle.settingsEvaluated {
2-
buildCache {
3-
local {
4-
isEnabled = true
5-
directory = File(rootDir, ".gradle/build-cache")
6-
}
7-
}
8-
}
9-
101
plugins {
112
id("java")
123
id("org.springframework.boot") version "3.4.2"
134
id("io.spring.dependency-management") version "1.1.7"
5+
id("org.sonarqube") version "4.4.1.3373"
6+
}
7+
8+
sonarqube {
9+
properties {
10+
property("sonar.exclusions", "**/JwtProvider.java,**/JwtAuthenticationFilter.java,...")
11+
property("sonar.duplication.exclusions", "**/JwtProvider.java,**/JwtAuthenticationFilter.java,...")
12+
}
1413
}
1514

1615
group = "org.dfbf"

0 commit comments

Comments
 (0)