Skip to content

Commit

Permalink
[FIX]: sonar test
Browse files Browse the repository at this point in the history
  • Loading branch information
phonil committed Apr 13, 2024
1 parent 31b83d9 commit 26b8874
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
plugins {
id 'java'
id 'org.sonarqube' version '3.3'
id 'org.springframework.boot' version '2.5.6' // Spring Boot 버전을 2.5.6으로 변경
id 'io.spring.dependency-management' version '1.0.11.RELEASE' // Spring Boot 버전 변경
id 'org.springframework.boot' version '3.1.3'
id 'io.spring.dependency-management' version '1.1.3'
}

group = 'com.example'
Expand All @@ -14,7 +14,6 @@ jar {

java {
sourceCompatibility = '17'
targetCompatibility = '17'
}

configurations {
Expand Down Expand Up @@ -84,6 +83,7 @@ sonarqube {
property "sonar.projectName" , "Studio-Eye-User-Service"
property "sonar.sources", "src" // 소스 경로
property "sonar.language", "java" // 언어
property "sonar.java.source", "17"
property "sonar.sourceEncoding", "UTF-8"
property "sonar.profile", "Sonar way" // SonarQube 에서 분석할 때 적용할 프로필(분석할 수준 설정)
property "sonar.java.binaries", "${buildDir}/classes" // 자바 클래스 파일위치
Expand Down

0 comments on commit 26b8874

Please sign in to comment.