SonarQube / AngularJS - How to I get SonarQube up and running to get my Angular project integrated /...
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
add a comment |
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
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
add a comment |
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
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
angular sonarqube
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
Use of the following plugin (SonarJS) helped resolve my confusion and begin analysis - docs.sonarqube.org/display/PLUG/SonarJS
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%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
Use of the following plugin (SonarJS) helped resolve my confusion and begin analysis - docs.sonarqube.org/display/PLUG/SonarJS
add a comment |
Use of the following plugin (SonarJS) helped resolve my confusion and begin analysis - docs.sonarqube.org/display/PLUG/SonarJS
add a comment |
Use of the following plugin (SonarJS) helped resolve my confusion and begin analysis - docs.sonarqube.org/display/PLUG/SonarJS
Use of the following plugin (SonarJS) helped resolve my confusion and begin analysis - docs.sonarqube.org/display/PLUG/SonarJS
answered Jan 2 at 4:31
VaheVahe
5052942
5052942
add a comment |
add a comment |
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%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
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
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