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













1















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.










share|improve this question

















  • 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















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.










share|improve this question

















  • 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








1








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.










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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












  • 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










1 Answer
1






active

oldest

votes


















1














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>





share|improve this answer






















    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
    );



    );













    draft saved

    draft discarded


















    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









    1














    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>





    share|improve this answer



























      1














      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>





      share|improve this answer

























        1












        1








        1







        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>





        share|improve this answer













        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>






        share|improve this answer












        share|improve this answer



        share|improve this answer










        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
















            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.



















            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

            용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

            155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해