Skip to content

Commit

Permalink
devops : sonarQube build.gradle setting
Browse files Browse the repository at this point in the history
build.gradle 파일 sonarQube 섀정에 ν•„μš”ν•œ λΆ€λΆ„ μΆ”κ°€ν–ˆμŠ΅λ‹ˆλ‹€.
  • Loading branch information
HABINOH committed Apr 25, 2024
1 parent 53313d8 commit 417f951
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions backEnd/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ plugins {
id 'java'
id 'org.springframework.boot' version '3.2.5'
id 'io.spring.dependency-management' version '1.1.4'
id 'org.sonarqube' version '4.0.0.2929'
}

sonarqube {
properties {
property "sonar.projectKey", System.getenv('SONAR_PROJECT_KEY')
property "sonar.host.url", System.getenv('SONAR_HOST_URL')
property "sonar.login", System.getenv('SONAR_LOGIN')
}
}

group = 'com.6quiz'
Expand Down

0 comments on commit 417f951

Please sign in to comment.