How to run SonarQube Scanner with Gradle MSBuild Plugin?How can I profile C++ code running on Linux?How can I force gradle to redownload dependencies?TeamCity and SonarQube - not able to run FXCopSonarQube Scanner for MSBuild doesn't runDisable a gradle plugin depending on the java targetThe SonarQube MSBuild integration failed: SonarQube was unable to collect the required information about your projectsSonarQube / AngularJS - How to I get SonarQube up and running to get my Angular project integrated / analyzed?SonarQube MSBuild integration failed with Jenkins, works fine on command lineThe SonarQube MSBuild integration failed - SonarQube 7 with Scanner 4.0.2.892 and VS2017No tool named SonarQube Scanner 2.8 found error
Rear derailleur got caught in the spokes, what could be a root cause
Delete all files from a folder using a bat that match a certain pattern in Windows 10
Is it theoretically possible to hack printer using scanner tray?
Are some intrument combinations incompatible?
Avoiding repetition when using the "snprintf idiom" to write text
I agreed to cancel a long-planned vacation (with travel costs) due to project deadlines, but now the timeline has all changed again
Calculus, water poured into a cone: Why is the derivative non-linear?
Do electrons really perform instantaneous quantum leaps?
Is my guitar action too high or is the bridge too high?
Can dual citizens open crypto exchange accounts where U.S. citizens are prohibited?
How does mmorpg store data?
A finite 2 group containing the dihedral group of order 16?
Why are examinees often not allowed to leave during the start and end of an exam?
Is this house-rule removing the increased effect of cantrips at higher character levels balanced?
Example of query execution plan where the cardinality estimation makes a difference
Journal standards vs. personal standards
Correct use of the the idiom 'Гнать/Катить бочку'
Why is numpy sometimes slower than numpy + plain python loop?
Customs and immigration on a USA-UK-Sweden flight itinerary
Robots in a spaceship
Hard for me to understand one tip written in "The as-if rule" of cppreference
Word ending in "-ine" for rat-like
Could you fall off a planet if it was being accelerated by engines?
Subset of knight's move in chess.
How to run SonarQube Scanner with Gradle MSBuild Plugin?
How can I profile C++ code running on Linux?How can I force gradle to redownload dependencies?TeamCity and SonarQube - not able to run FXCopSonarQube Scanner for MSBuild doesn't runDisable a gradle plugin depending on the java targetThe SonarQube MSBuild integration failed: SonarQube was unable to collect the required information about your projectsSonarQube / AngularJS - How to I get SonarQube up and running to get my Angular project integrated / analyzed?SonarQube MSBuild integration failed with Jenkins, works fine on command lineThe SonarQube MSBuild integration failed - SonarQube 7 with Scanner 4.0.2.892 and VS2017No tool named SonarQube Scanner 2.8 found error
I am using the MSBuild plugin for Gradle (https://github.com/Ullink/gradle-msbuild-plugin) to build my C++ project under Windows, this works fine. I couldn't find a way to run SonarQube Scanner Build Wrapper (https://docs.sonarqube.org/display/PLUG/Building+on+Windows) with it though, which is necessary for C/C++ projects.
The build.gradle looks like this:
plugins
id "com.ullink.msbuild" version "3.1"
...
msbuild
projectFile = file("$buildDir/$Target_platform_arch/ALL_BUILD.vcxproj")
projectName = 'SomeProject'
verbosity = 'detailed'
targets = ['Clean', 'Rebuild']
version = '14.0'
msbuildDir = /path/to/Msbuild
...
The sonarqube scanner build wrapper supposed to be called as:
build-wrapper-win-x86-64.exe --out-dir bw_output MSBuild.exe /t:Rebuild
So how do I run the build-wrapper together with the Gradle MSBuild plugin? I thought this usecase is not a rare one, but I couldn't find a solution.
c++ visual-studio gradle automation sonarqube
add a comment |
I am using the MSBuild plugin for Gradle (https://github.com/Ullink/gradle-msbuild-plugin) to build my C++ project under Windows, this works fine. I couldn't find a way to run SonarQube Scanner Build Wrapper (https://docs.sonarqube.org/display/PLUG/Building+on+Windows) with it though, which is necessary for C/C++ projects.
The build.gradle looks like this:
plugins
id "com.ullink.msbuild" version "3.1"
...
msbuild
projectFile = file("$buildDir/$Target_platform_arch/ALL_BUILD.vcxproj")
projectName = 'SomeProject'
verbosity = 'detailed'
targets = ['Clean', 'Rebuild']
version = '14.0'
msbuildDir = /path/to/Msbuild
...
The sonarqube scanner build wrapper supposed to be called as:
build-wrapper-win-x86-64.exe --out-dir bw_output MSBuild.exe /t:Rebuild
So how do I run the build-wrapper together with the Gradle MSBuild plugin? I thought this usecase is not a rare one, but I couldn't find a solution.
c++ visual-studio gradle automation sonarqube
1
Have you tried running:build-wrapper-win-x86-64.exe --out-dir bw_output gradle <your build task>?
– Julien H. - SonarSource Team
Mar 26 at 8:30
@JulienH.-SonarSourceTeam yeah that actually works, thanks a lot!
– Metaphox
Apr 1 at 8:04
add a comment |
I am using the MSBuild plugin for Gradle (https://github.com/Ullink/gradle-msbuild-plugin) to build my C++ project under Windows, this works fine. I couldn't find a way to run SonarQube Scanner Build Wrapper (https://docs.sonarqube.org/display/PLUG/Building+on+Windows) with it though, which is necessary for C/C++ projects.
The build.gradle looks like this:
plugins
id "com.ullink.msbuild" version "3.1"
...
msbuild
projectFile = file("$buildDir/$Target_platform_arch/ALL_BUILD.vcxproj")
projectName = 'SomeProject'
verbosity = 'detailed'
targets = ['Clean', 'Rebuild']
version = '14.0'
msbuildDir = /path/to/Msbuild
...
The sonarqube scanner build wrapper supposed to be called as:
build-wrapper-win-x86-64.exe --out-dir bw_output MSBuild.exe /t:Rebuild
So how do I run the build-wrapper together with the Gradle MSBuild plugin? I thought this usecase is not a rare one, but I couldn't find a solution.
c++ visual-studio gradle automation sonarqube
I am using the MSBuild plugin for Gradle (https://github.com/Ullink/gradle-msbuild-plugin) to build my C++ project under Windows, this works fine. I couldn't find a way to run SonarQube Scanner Build Wrapper (https://docs.sonarqube.org/display/PLUG/Building+on+Windows) with it though, which is necessary for C/C++ projects.
The build.gradle looks like this:
plugins
id "com.ullink.msbuild" version "3.1"
...
msbuild
projectFile = file("$buildDir/$Target_platform_arch/ALL_BUILD.vcxproj")
projectName = 'SomeProject'
verbosity = 'detailed'
targets = ['Clean', 'Rebuild']
version = '14.0'
msbuildDir = /path/to/Msbuild
...
The sonarqube scanner build wrapper supposed to be called as:
build-wrapper-win-x86-64.exe --out-dir bw_output MSBuild.exe /t:Rebuild
So how do I run the build-wrapper together with the Gradle MSBuild plugin? I thought this usecase is not a rare one, but I couldn't find a solution.
c++ visual-studio gradle automation sonarqube
c++ visual-studio gradle automation sonarqube
asked Mar 25 at 15:41
MetaphoxMetaphox
1,4851 gold badge15 silver badges31 bronze badges
1,4851 gold badge15 silver badges31 bronze badges
1
Have you tried running:build-wrapper-win-x86-64.exe --out-dir bw_output gradle <your build task>?
– Julien H. - SonarSource Team
Mar 26 at 8:30
@JulienH.-SonarSourceTeam yeah that actually works, thanks a lot!
– Metaphox
Apr 1 at 8:04
add a comment |
1
Have you tried running:build-wrapper-win-x86-64.exe --out-dir bw_output gradle <your build task>?
– Julien H. - SonarSource Team
Mar 26 at 8:30
@JulienH.-SonarSourceTeam yeah that actually works, thanks a lot!
– Metaphox
Apr 1 at 8:04
1
1
Have you tried running:
build-wrapper-win-x86-64.exe --out-dir bw_output gradle <your build task> ?– Julien H. - SonarSource Team
Mar 26 at 8:30
Have you tried running:
build-wrapper-win-x86-64.exe --out-dir bw_output gradle <your build task> ?– Julien H. - SonarSource Team
Mar 26 at 8:30
@JulienH.-SonarSourceTeam yeah that actually works, thanks a lot!
– Metaphox
Apr 1 at 8:04
@JulienH.-SonarSourceTeam yeah that actually works, thanks a lot!
– Metaphox
Apr 1 at 8:04
add a comment |
1 Answer
1
active
oldest
votes
The build wrapper is intercepting low level compiler calls so it can in theory work with any build framework.
If you are using Gradle to build a C/C++ project, simply call:
build-wrapper-win-x86-64.exe --out-dir bw_output gradle <your build task>
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55341478%2fhow-to-run-sonarqube-scanner-with-gradle-msbuild-plugin%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The build wrapper is intercepting low level compiler calls so it can in theory work with any build framework.
If you are using Gradle to build a C/C++ project, simply call:
build-wrapper-win-x86-64.exe --out-dir bw_output gradle <your build task>
add a comment |
The build wrapper is intercepting low level compiler calls so it can in theory work with any build framework.
If you are using Gradle to build a C/C++ project, simply call:
build-wrapper-win-x86-64.exe --out-dir bw_output gradle <your build task>
add a comment |
The build wrapper is intercepting low level compiler calls so it can in theory work with any build framework.
If you are using Gradle to build a C/C++ project, simply call:
build-wrapper-win-x86-64.exe --out-dir bw_output gradle <your build task>
The build wrapper is intercepting low level compiler calls so it can in theory work with any build framework.
If you are using Gradle to build a C/C++ project, simply call:
build-wrapper-win-x86-64.exe --out-dir bw_output gradle <your build task>
answered Apr 2 at 8:40
Julien H. - SonarSource TeamJulien H. - SonarSource Team
4,16311 silver badges14 bronze badges
4,16311 silver badges14 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55341478%2fhow-to-run-sonarqube-scanner-with-gradle-msbuild-plugin%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Have you tried running:
build-wrapper-win-x86-64.exe --out-dir bw_output gradle <your build task>?– Julien H. - SonarSource Team
Mar 26 at 8:30
@JulienH.-SonarSourceTeam yeah that actually works, thanks a lot!
– Metaphox
Apr 1 at 8:04