SonarQube / AngularJS - How to I get SonarQube up and running to get my Angular project integrated /...












2















I have a front end project (AngularJS - not latest version) and want to analyze the code with SonarQube.



Here is what I did so far.



1) Grabbed my project from GitHub and cloned to desktop.



2) Downloaded SonarQube-6.5 and extracted to desktop.



3) Opened sonarqube-6.5extensionsplugins (in my extracted directory) and pasted a front end plugin (downloaded from https://github.com/groupe-sii/sonar-web-frontend-plugin)



4) Created sonar-project.properties in my web directory of my project



Contents



# Required metadata
sonar.projectKey=project-name
sonar.projectName=project name
sonar.projectVersion=0.1

# Comma-separated paths to directories with sources (required)
sonar.sources=src/app

# exclude some files and folders (typically dependencies)
sonar.exclusions=bower_components/**/*, node_modules/**/*

# Encoding of the source files
sonar.sourceEncoding=UTF-8


Then I ran the following in command line.




cd project root dir



"c:\sonar-scanner-msbuild-3.0.2.656SonarQube.Scanner.MSBuild.exe"
begin /k:"orag.sonarqube:sonarqube-scanner-msbuild"
/n:"CMNHMobile-nextrelease" /v:"1.0" c:pathto ms buildMSBuild.exe /t:Rebuild
"c:sonar-scanner-msbuild-3.0.2.656SonarQube.Scanner.MSBuild.exe"
end




After these steps I do not see any project listed in my localhost:9000 (SonarQube)



What can I do to show the project for analysis?










share|improve this question























  • Use of the following plugin (SonarJS) helped resolve my confusion and begin analysis - docs.sonarqube.org/display/PLUG/SonarJS

    – Vahe
    Aug 18 '17 at 17:47


















2















I have a front end project (AngularJS - not latest version) and want to analyze the code with SonarQube.



Here is what I did so far.



1) Grabbed my project from GitHub and cloned to desktop.



2) Downloaded SonarQube-6.5 and extracted to desktop.



3) Opened sonarqube-6.5extensionsplugins (in my extracted directory) and pasted a front end plugin (downloaded from https://github.com/groupe-sii/sonar-web-frontend-plugin)



4) Created sonar-project.properties in my web directory of my project



Contents



# Required metadata
sonar.projectKey=project-name
sonar.projectName=project name
sonar.projectVersion=0.1

# Comma-separated paths to directories with sources (required)
sonar.sources=src/app

# exclude some files and folders (typically dependencies)
sonar.exclusions=bower_components/**/*, node_modules/**/*

# Encoding of the source files
sonar.sourceEncoding=UTF-8


Then I ran the following in command line.




cd project root dir



"c:\sonar-scanner-msbuild-3.0.2.656SonarQube.Scanner.MSBuild.exe"
begin /k:"orag.sonarqube:sonarqube-scanner-msbuild"
/n:"CMNHMobile-nextrelease" /v:"1.0" c:pathto ms buildMSBuild.exe /t:Rebuild
"c:sonar-scanner-msbuild-3.0.2.656SonarQube.Scanner.MSBuild.exe"
end




After these steps I do not see any project listed in my localhost:9000 (SonarQube)



What can I do to show the project for analysis?










share|improve this question























  • Use of the following plugin (SonarJS) helped resolve my confusion and begin analysis - docs.sonarqube.org/display/PLUG/SonarJS

    – Vahe
    Aug 18 '17 at 17:47
















2












2








2








I have a front end project (AngularJS - not latest version) and want to analyze the code with SonarQube.



Here is what I did so far.



1) Grabbed my project from GitHub and cloned to desktop.



2) Downloaded SonarQube-6.5 and extracted to desktop.



3) Opened sonarqube-6.5extensionsplugins (in my extracted directory) and pasted a front end plugin (downloaded from https://github.com/groupe-sii/sonar-web-frontend-plugin)



4) Created sonar-project.properties in my web directory of my project



Contents



# Required metadata
sonar.projectKey=project-name
sonar.projectName=project name
sonar.projectVersion=0.1

# Comma-separated paths to directories with sources (required)
sonar.sources=src/app

# exclude some files and folders (typically dependencies)
sonar.exclusions=bower_components/**/*, node_modules/**/*

# Encoding of the source files
sonar.sourceEncoding=UTF-8


Then I ran the following in command line.




cd project root dir



"c:\sonar-scanner-msbuild-3.0.2.656SonarQube.Scanner.MSBuild.exe"
begin /k:"orag.sonarqube:sonarqube-scanner-msbuild"
/n:"CMNHMobile-nextrelease" /v:"1.0" c:pathto ms buildMSBuild.exe /t:Rebuild
"c:sonar-scanner-msbuild-3.0.2.656SonarQube.Scanner.MSBuild.exe"
end




After these steps I do not see any project listed in my localhost:9000 (SonarQube)



What can I do to show the project for analysis?










share|improve this question














I have a front end project (AngularJS - not latest version) and want to analyze the code with SonarQube.



Here is what I did so far.



1) Grabbed my project from GitHub and cloned to desktop.



2) Downloaded SonarQube-6.5 and extracted to desktop.



3) Opened sonarqube-6.5extensionsplugins (in my extracted directory) and pasted a front end plugin (downloaded from https://github.com/groupe-sii/sonar-web-frontend-plugin)



4) Created sonar-project.properties in my web directory of my project



Contents



# Required metadata
sonar.projectKey=project-name
sonar.projectName=project name
sonar.projectVersion=0.1

# Comma-separated paths to directories with sources (required)
sonar.sources=src/app

# exclude some files and folders (typically dependencies)
sonar.exclusions=bower_components/**/*, node_modules/**/*

# Encoding of the source files
sonar.sourceEncoding=UTF-8


Then I ran the following in command line.




cd project root dir



"c:\sonar-scanner-msbuild-3.0.2.656SonarQube.Scanner.MSBuild.exe"
begin /k:"orag.sonarqube:sonarqube-scanner-msbuild"
/n:"CMNHMobile-nextrelease" /v:"1.0" c:pathto ms buildMSBuild.exe /t:Rebuild
"c:sonar-scanner-msbuild-3.0.2.656SonarQube.Scanner.MSBuild.exe"
end




After these steps I do not see any project listed in my localhost:9000 (SonarQube)



What can I do to show the project for analysis?







angular sonarqube






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Aug 18 '17 at 17:20









VaheVahe

5052942




5052942













  • Use of the following plugin (SonarJS) helped resolve my confusion and begin analysis - docs.sonarqube.org/display/PLUG/SonarJS

    – Vahe
    Aug 18 '17 at 17:47





















  • Use of the following plugin (SonarJS) helped resolve my confusion and begin analysis - docs.sonarqube.org/display/PLUG/SonarJS

    – Vahe
    Aug 18 '17 at 17:47



















Use of the following plugin (SonarJS) helped resolve my confusion and begin analysis - docs.sonarqube.org/display/PLUG/SonarJS

– Vahe
Aug 18 '17 at 17:47







Use of the following plugin (SonarJS) helped resolve my confusion and begin analysis - docs.sonarqube.org/display/PLUG/SonarJS

– Vahe
Aug 18 '17 at 17:47














1 Answer
1






active

oldest

votes


















0














Use of the following plugin (SonarJS) helped resolve my confusion and begin analysis - docs.sonarqube.org/display/PLUG/SonarJS






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%2f45761892%2fsonarqube-angularjs-how-to-i-get-sonarqube-up-and-running-to-get-my-angular%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









    0














    Use of the following plugin (SonarJS) helped resolve my confusion and begin analysis - docs.sonarqube.org/display/PLUG/SonarJS






    share|improve this answer




























      0














      Use of the following plugin (SonarJS) helped resolve my confusion and begin analysis - docs.sonarqube.org/display/PLUG/SonarJS






      share|improve this answer


























        0












        0








        0







        Use of the following plugin (SonarJS) helped resolve my confusion and begin analysis - docs.sonarqube.org/display/PLUG/SonarJS






        share|improve this answer













        Use of the following plugin (SonarJS) helped resolve my confusion and begin analysis - docs.sonarqube.org/display/PLUG/SonarJS







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jan 2 at 4:31









        VaheVahe

        5052942




        5052942
































            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%2f45761892%2fsonarqube-angularjs-how-to-i-get-sonarqube-up-and-running-to-get-my-angular%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

            Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

            Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

            A Topological Invariant for $pi_3(U(n))$