File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525
2626 - name : Execute Gradle build
2727 run : ./gradlew build --no-daemon -Dsentry.auth.token=${{ secrets.SENTRY_AUTH_TOKEN }}
28+
29+ - name : Generate coverage report
30+ run : ./gradlew jacocoTestReport
2831
2932 - name : Cache SonarQube packages
3033 uses : actions/cache@v4
4346 - name : Build and analyze
4447 env :
4548 SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
46- run : ./gradlew build sonar --info
49+ run : ./gradlew sonar --info
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ plugins {
77 id(" org.springframework.boot" ) version " 3.5.6"
88 id(" org.springdoc.openapi-gradle-plugin" ) version " 1.9.0"
99 id(" io.spring.dependency-management" ) version " 1.1.7"
10- id(" org.sonarqube" ) version " 7.0.1.6134"
10+ id(" org.sonarqube" ) version " 6.2.0.5505 " // id("org.sonarqube") version " 7.0.1.6134"
1111 id(" io.sentry.jvm.gradle" ) version " 5.12.2"
1212}
1313
@@ -137,7 +137,7 @@ sonar {
137137 property(" sonar.organization" , " victorgotsenko" )
138138 property(" sonar.host.url" , " https://sonarcloud.io" )
139139 // Отключаем проверку зависимостей
140- property(" sonar.dependencyVerification.enabled" , " false" )
140+ // property("sonar.dependencyVerification.enabled", "false")
141141 }
142142}
143143
You can’t perform that action at this time.
0 commit comments