Skip to content

Commit

Permalink
Merge pull request #674 from jmecosta/bugfix/fix-urls-in-pom
Browse files Browse the repository at this point in the history
Update urls in pom.xml, wiki and plugin (SonarOpenCommunity)
  • Loading branch information
guwirth committed Nov 6, 2015
2 parents 65d4115 + 33492aa commit 4a00894
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 30 deletions.
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,17 @@ adds C++ support to this platform.

## Quickstart
1. Setup a SonarQube instance
2. Install the plugin (see [Installation](https://github.com/wenns/sonar-cxx/wiki/Installation))
3. Run an analysis (see [Running the analysis](https://github.com/wenns/sonar-cxx/wiki/Running-the-analysis))
2. Install the plugin (see [Installation](https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Installation))
3. Run an analysis (see [Running the analysis](https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Running-the-analysis))


## Resources
- [Latest release](https://github.com/wenns/sonar-cxx/releases)
- [Documentation](https://github.com/wenns/sonar-cxx/wiki)
- [Issue Tracker](https://github.com/wenns/sonar-cxx/issues)
- [Continuous Integration](https://travis-ci.org/wenns/sonar-cxx)
- [Sample project](https://github.com/wenns/sonar-cxx/tree/master/sonar-cxx-plugin/src/samples/SampleProject)
- [Latest release](https://github.com/SonarOpenCommunity/sonar-cxx/releases)
- [Documentation](https://github.com/SonarOpenCommunity/sonar-cxx/wiki)
- [Issue Tracker](https://github.com/SonarOpenCommunity/sonar-cxx/issues)
- [Continuous Integration Unix](https://travis-ci.org/SonarOpenCommunity/sonar-cxx)
- [Continuous Integration Windows](https://ci.appveyor.com/project/SonarOpenCommunity/sonar-cxx)
- [Sample project](https://github.com/SonarOpenCommunity/sonar-cxx/tree/master/sonar-cxx-plugin/src/samples/SampleProject)


## Alternatives:
Expand All @@ -32,4 +33,4 @@ the commercial [C++ plugin from SonarSource](http://www.sonarsource.com/products
Choose whatever fits your needs.

## Subscribe
Subscribe our [release feed](https://github.com/wenns/sonar-cxx/releases.atom)
Subscribe our [release feed](https://github.com/SonarOpenCommunity/sonar-cxx/releases.atom)
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<packaging>pom</packaging>

<name>Cxx</name>
<url>https://github.com/wenns/sonar-cxx</url>
<url>https://github.com/SonarOpenCommunity/sonar-cxx</url>
<inceptionYear>2011</inceptionYear>
<organization>
<name>Waleri Enns</name>
Expand Down Expand Up @@ -114,18 +114,18 @@
</modules>

<scm>
<connection>scm:git:[email protected]:wenns/sonar-cxx.git</connection>
<developerConnection>https://github.com/wenns/sonar-cxx</developerConnection>
<url>https://github.com/wenns/sonar-cxx</url>
<connection>scm:git:[email protected]:SonarOpenCommunity/sonar-cxx.git</connection>
<developerConnection>https://github.com/SonarOpenCommunity/sonar-cxx</developerConnection>
<url>https://github.com/SonarOpenCommunity/sonar-cxx</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>Git</system>
<url>https://github.com/wenns/sonar-cxx/issues?state=open</url>
<url>https://github.com/SonarOpenCommunity/sonar-cxx/issues?state=open</url>
</issueManagement>
<ciManagement>
<system>Travis-CI</system>
<url>https://travis-ci.org/wenns/sonar-cxx/</url>
<url>https://travis-ci.org/SonarOpenCommunity/sonar-cxx/</url>
</ciManagement>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion sonar-cxx-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<name>Cxx :: Sonar Plugin</name>
<inceptionYear>2010</inceptionYear>
<description>Enable analysis and reporting on c++ projects.</description>
<url>http://docs.codehaus.org/display/SONAR/CXX+PLUGIN</url>
<url>https://github.com/SonarOpenCommunity/sonar-cxx/wiki</url>

<properties>
<license.owner>Neticoa SAS France</license.owner>
Expand Down
28 changes: 14 additions & 14 deletions sonar-cxx-plugin/src/main/java/org/sonar/plugins/cxx/CxxPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ private static List<PropertyDefinition> codeAnalysisProperties() {
PropertyDefinition.builder(CxxCppCheckRuleRepository.CUSTOM_RULES_KEY)
.name("Cppcheck custom rules")
.description("XML definitions of custom Cppcheck rules, which are'nt builtin into the plugin."
+ " The used format is described <a href='https://github.com/wenns/sonar-cxx/wiki/Extending-the-code-analysis'>here</a>.")
+ " The used format is described <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Extending-the-code-analysis'>here</a>.")
.type(PropertyType.TEXT)
.subCategory(subcateg)
.index(2)
Expand All @@ -178,7 +178,7 @@ private static List<PropertyDefinition> codeAnalysisProperties() {
PropertyDefinition.builder(CxxValgrindRuleRepository.CUSTOM_RULES_KEY)
.name("Valgrind custom rules")
.description("XML definitions of custom Valgrind rules, which are'nt builtin into the plugin."
+ " The used format is described <a href='https://github.com/wenns/sonar-cxx/wiki/Extending-the-code-analysis'>here</a>.")
+ " The used format is described <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Extending-the-code-analysis'>here</a>.")
.type(PropertyType.TEXT)
.subCategory(subcateg)
.index(4)
Expand All @@ -196,7 +196,7 @@ private static List<PropertyDefinition> codeAnalysisProperties() {
PropertyDefinition.builder(CxxPCLintRuleRepository.CUSTOM_RULES_KEY)
.name("PC-lint custom rules")
.description("XML definitions of custom PC-lint rules, which are'nt builtin into the plugin."
+ " The used format is described <a href='https://github.com/wenns/sonar-cxx/wiki/Extending-the-code-analysis'>here</a>.")
+ " The used format is described <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Extending-the-code-analysis'>here</a>.")
.type(PropertyType.TEXT)
.subCategory(subcateg)
.index(6)
Expand All @@ -214,7 +214,7 @@ private static List<PropertyDefinition> codeAnalysisProperties() {
PropertyDefinition.builder(CxxRatsRuleRepository.CUSTOM_RULES_KEY)
.name("RATS custom rules")
.description("XML definitions of custom RATS rules, which are'nt builtin into the plugin."
+ " The used format is described <a href='https://github.com/wenns/sonar-cxx/wiki/Extending-the-code-analysis'>here</a>.")
+ " The used format is described <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Extending-the-code-analysis'>here</a>.")
.type(PropertyType.TEXT)
.subCategory(subcateg)
.index(8)
Expand All @@ -232,7 +232,7 @@ private static List<PropertyDefinition> codeAnalysisProperties() {
PropertyDefinition.builder(CxxVeraxxRuleRepository.CUSTOM_RULES_KEY)
.name("Vera++ custom rules")
.description("XML definitions of custom Vera++ rules, which are'nt builtin into the plugin."
+ " The used format is described <a href='https://github.com/wenns/sonar-cxx/wiki/Extending-the-code-analysis'>here</a>.")
+ " The used format is described <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Extending-the-code-analysis'>here</a>.")
.type(PropertyType.TEXT)
.subCategory(subcateg)
.index(10)
Expand All @@ -242,7 +242,7 @@ private static List<PropertyDefinition> codeAnalysisProperties() {
.name("External checkers report(s)")
.description("Path to a code analysis report, which is generated by some unsupported code analyser, relative to projects root."
+ " Use <a href='https://ant.apache.org/manual/dirtasks.html'>Ant-style wildcards</a> if neccessary."
+ " See <a href='https://github.com/wenns/sonar-cxx/wiki/Extending-the-code-analysis'>here</a> for details.")
+ " See <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Extending-the-code-analysis'>here</a> for details.")
.subCategory(subcateg)
.onQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
.index(11)
Expand All @@ -251,7 +251,7 @@ private static List<PropertyDefinition> codeAnalysisProperties() {
PropertyDefinition.builder(CxxExternalRuleRepository.RULES_KEY)
.name("External rules")
.description("Rule sets for 'external' code analysers. Use one value per rule set."
+ " See <a href='https://github.com/wenns/sonar-cxx/wiki/Extending-the-code-analysis'>this page</a> for details.")
+ " See <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Extending-the-code-analysis'>this page</a> for details.")
.type(PropertyType.TEXT)
.multiValues(true)
.subCategory(subcateg)
Expand All @@ -261,7 +261,7 @@ private static List<PropertyDefinition> codeAnalysisProperties() {
PropertyDefinition.builder(CxxExternalRuleRepository.SQALES_KEY)
.name("External SQALE characteristics")
.description("SQALE characteristics for 'external' code analysers. Use one value per rule set."
+ " See <a href='https://github.com/wenns/sonar-cxx/wiki/Extending-the-code-analysis'>this page</a> for details.")
+ " See <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Extending-the-code-analysis'>this page</a> for details.")
.type(PropertyType.TEXT)
.multiValues(true)
.subCategory(subcateg)
Expand Down Expand Up @@ -313,7 +313,7 @@ private static List<PropertyDefinition> compilerWarningsProperties() {
PropertyDefinition.builder(CxxCompilerVcRuleRepository.CUSTOM_RULES_KEY)
.name("Custom rules for Visual C++ warnings")
.description("XML definitions of custom rules for Visual C++ warnings, which are'nt builtin into the plugin."
+ " The used format is described <a href='https://github.com/wenns/sonar-cxx/wiki/Extending-the-code-analysis'>here</a>.")
+ " The used format is described <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Extending-the-code-analysis'>here</a>.")
.type(PropertyType.TEXT)
.subCategory(subcateg)
.index(5)
Expand All @@ -322,7 +322,7 @@ private static List<PropertyDefinition> compilerWarningsProperties() {
PropertyDefinition.builder(CxxCompilerGccRuleRepository.CUSTOM_RULES_KEY)
.name("Custom rules for GCC warnings")
.description("XML definitions of custom rules for GCC's warnings, which are'nt builtin into the plugin."
+ " The used format is described <a href='https://github.com/wenns/sonar-cxx/wiki/Extending-the-code-analysis'>here</a>.")
+ " The used format is described <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Extending-the-code-analysis'>here</a>.")
.type(PropertyType.TEXT)
.subCategory(subcateg)
.build()
Expand All @@ -335,7 +335,7 @@ private static List<PropertyDefinition> testingAndCoverageProperties() {
PropertyDefinition.builder(CxxCoverageSensor.REPORT_PATH_KEY)
.name("Unit test coverage report(s)")
.description("Path to a report containing unit test coverage data, relative to projects root."
+ " See <a href='https://github.com/wenns/sonar-cxx/wiki/Get-code-coverage-metrics'>here</a> for supported formats."
+ " See <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Get-code-coverage-metrics'>here</a> for supported formats."
+ " Use <a href='https://ant.apache.org/manual/dirtasks.html'>Ant-style wildcards</a> if neccessary.")
.subCategory(subcateg)
.onQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
Expand All @@ -345,7 +345,7 @@ private static List<PropertyDefinition> testingAndCoverageProperties() {
PropertyDefinition.builder(CxxCoverageSensor.IT_REPORT_PATH_KEY)
.name("Integration test coverage report(s)")
.description("Path to a report containing integration test coverage data, relative to projects root."
+ " See <a href='https://github.com/wenns/sonar-cxx/wiki/Get-code-coverage-metrics'>here</a> for supported formats."
+ " See <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Get-code-coverage-metrics'>here</a> for supported formats."
+ " Use <a href='https://ant.apache.org/manual/dirtasks.html'>Ant-style wildcards</a> if neccessary.")
.subCategory(subcateg)
.onQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
Expand All @@ -355,7 +355,7 @@ private static List<PropertyDefinition> testingAndCoverageProperties() {
PropertyDefinition.builder(CxxCoverageSensor.OVERALL_REPORT_PATH_KEY)
.name("Overall test coverage report(s)")
.description("Path to a report containing overall test coverage data (i.e. test coverage gained by all tests of all kinds), relative to projects root."
+ " See <a href='https://github.com/wenns/sonar-cxx/wiki/Get-code-coverage-metrics'>here</a> for supported formats."
+ " See <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Get-code-coverage-metrics'>here</a> for supported formats."
+ " Use <a href='https://ant.apache.org/manual/dirtasks.html'>Ant-style wildcards</a> if neccessary.")
.subCategory(subcateg)
.onQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
Expand All @@ -376,7 +376,7 @@ private static List<PropertyDefinition> testingAndCoverageProperties() {
PropertyDefinition.builder(CxxXunitSensor.REPORT_PATH_KEY)
.name("Unit test execution report(s)")
.description("Path to unit test execution report(s), relative to projects root."
+ " See <a href='https://github.com/wenns/sonar-cxx/wiki/Get-test-execution-metrics' for supported formats."
+ " See <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Get-test-execution-metrics' for supported formats."
+ " Use <a href='https://ant.apache.org/manual/dirtasks.html'>Ant-style wildcards</a> if neccessary.")
.subCategory(subcateg)
.onQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
Expand Down
2 changes: 1 addition & 1 deletion sonar-cxx-plugin/src/samples/SampleProject2/Readme
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ It assumes following software to be installed:
- vera++, perl, vera++Report2checkstyleReport.perl

See the the Cxx-Plugin Wiki for some details on dependencies:
http://docs.codehaus.org/display/SONAR/CXX+Plugin
https://github.com/SonarOpenCommunity/sonar-cxx/wiki


################################################################################
Expand Down

0 comments on commit 4a00894

Please sign in to comment.