First, I want to double-check that you’ve already revoked that token you just published.
Second, I see a couple things in your log. First:
CoreCompile:
Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.
You need to do a full rebuild with each analysis. Analysis eavesdrops on the build to gather information about your project. No build → no analysis.
Second, I notice there are some non-UTF-8 characters in your project key. The problem is probably the lack of a build, but it might be worth trying without these characters in the key: “�
I have verified my publish token generated new token. I have rectified non-UTF-8 characters still i could not able to push the build on Sonar. AnalysisLog.txt (33.9 KB)
stage(‘Code Quality’) {
steps {
echo ‘Code Quality’
withSonarQubeEnv(‘SonarQubeToken’) {
//bat “SonarScanner.MSBuild.exe begin /k:MsBuild /d:sonar.host.url=http://localhost:9000 /d:sonar.login=3f3112ec12c214928535038257cf972f92de5e95”
script {
scannerHome = tool ‘SonarQubeMsBuild’
echo “${scannerHome}”
bat “”${tool ‘MsBuild’}"\msbuild.exe begin /k:‘NetMsBuild’ /d:sonar.host.url=http://localhost:9000 /d:sonar.login=‘4a68bdafbd06dc455c99e6df103138685d3fa3c2’"
bat “”${tool ‘MsBuild’}"\msbuild.exe /t:Rebuild /p:Configuration=Release"
bat “”${tool ‘MsBuild’}"\msbuild.exe end /d:sonar.login=‘4a68bdafbd06dc455c99e6df103138685d3fa3c2’"
}
}
}
}