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:
7575 run : ./gradlew javadoc
7676
7777 - name : SonarQube
78+ env :
79+ SONAR_TOKEN : ${{ secrets.SONAR_TOKEN_2025 }}
7880 run : |
7981 ./gradlew sonar \
8082 -Dsonar.projectKey=${{ vars.SONAR_PROJECT_KEY }} \
8183 -Dsonar.host.url=${{ vars.SONAR_HOST_URL }} \
82- -Dsonar.token="${{ secrets.SONAR_TOKEN }}" \
84+ -Dsonar.token="${{ secrets.SONAR_TOKEN_2025 }}" \
8385 -Dsonar.qualitygate.wait=true
8486
8587 # Deployment
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ dependencies {
8181 testImplementation " org.junit.jupiter:junit-jupiter:$junitVersion "
8282 testImplementation " org.spockframework:spock-core:2.3-groovy-$groovyVersion "
8383 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
8585
8686 // testcontainers (docker framework for testing)
8787 testImplementation " org.testcontainers:testcontainers:$testcontainersVersion "
You can’t perform that action at this time.
0 commit comments