File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -75,11 +75,13 @@ jobs:
75
75
run : ./gradlew javadoc
76
76
77
77
- name : SonarQube
78
+ env :
79
+ SONAR_TOKEN : ${{ secrets.SONAR_TOKEN_2025 }}
78
80
run : |
79
81
./gradlew sonar \
80
82
-Dsonar.projectKey=${{ vars.SONAR_PROJECT_KEY }} \
81
83
-Dsonar.host.url=${{ vars.SONAR_HOST_URL }} \
82
- -Dsonar.token="${{ secrets.SONAR_TOKEN }}" \
84
+ -Dsonar.token="${{ secrets.SONAR_TOKEN_2025 }}" \
83
85
-Dsonar.qualitygate.wait=true
84
86
85
87
# Deployment
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ dependencies {
81
81
testImplementation " org.junit.jupiter:junit-jupiter:$junitVersion "
82
82
testImplementation " org.spockframework:spock-core:2.3-groovy-$groovyVersion "
83
83
testImplementation ' org.objenesis:objenesis:3.4' // Mock creation with constructor parameters
84
- testImplementation ' net.bytebuddy:byte-buddy:1.17.5 ' // Mocks of classes
84
+ testImplementation ' net.bytebuddy:byte-buddy:1.17.6 ' // Mocks of classes
85
85
86
86
// testcontainers (docker framework for testing)
87
87
testImplementation " org.testcontainers:testcontainers:$testcontainersVersion "
You can’t perform that action at this time.
0 commit comments