aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Gumowski <michael.gumowski@sonarsource.com>2020-02-27 15:10:16 +0100
committersonartech <sonartech@sonarsource.com>2020-03-04 20:03:58 +0000
commitff1ae364d09ac1ec5a1197c54986d547cefaae47 (patch)
treef01b68f83c5c6f82e192e70747ffa4f4528bdbec
parent80120ab1ec8e300f1a7f22c269fd67fe8535ded8 (diff)
downloadsonarqube-ff1ae364d09ac1ec5a1197c54986d547cefaae47.tar.gz
sonarqube-ff1ae364d09ac1ec5a1197c54986d547cefaae47.zip
Update java documentation to fix links of "Related pages" section
Parenthesis are inverted, findbugs link is missing, move "Related pages" above API changes.
-rw-r--r--server/sonar-docs/src/pages/analysis/languages/java.md14
1 files changed, 6 insertions, 8 deletions
diff --git a/server/sonar-docs/src/pages/analysis/languages/java.md b/server/sonar-docs/src/pages/analysis/languages/java.md
index c200b35f46c..08bcd9063ba 100644
--- a/server/sonar-docs/src/pages/analysis/languages/java.md
+++ b/server/sonar-docs/src/pages/analysis/languages/java.md
@@ -56,6 +56,12 @@ Example: `sonar.java.source=1.6`
If the property is provided, the analysis will take the source version into account, and execute related rules accordingly. At run time, each of these rules will be executed – or not – depending of the Java version used by sources within the project. For instance, on a correctly configured project built with Java 6, rules targeting Java 7 and Java 8 will never raise issues, even though they are enabled in the associated rule profile.
+## Related Pages
+
+* [Test Coverage & Execution](/analysis/coverage/) (JaCoCo, Surefire)
+* [Importing External Issues](/analysis/external-issues/) ([SpotBugs](https://spotbugs.github.io/), [FindBugs](http://findbugs.sourceforge.net/), [FindSecBugs](https://github.com/find-sec-bugs/find-sec-bugs/wiki/Maven-configuration), [PMD](http://maven.apache.org/plugins/maven-pmd-plugin/usage.html), [Checkstyle](http://maven.apache.org/plugins/maven-checkstyle-plugin/checkstyle-mojo))
+<!-- sonarqube -->* [Adding Coding Rules](/extend/adding-coding-rules/)<!-- /sonarqube -->
+
<!-- sonarqube -->
## Custom Rules
@@ -271,11 +277,3 @@ The tutorial [Writing Custom Java Rules 101](https://redirect.sonarsource.com/do
}
```
<!-- /sonarqube -->
-
-## Related Pages
-
-* [Test Coverage & Execution](/analysis/coverage/) ([SpotBugs](https://spotbugs.github.io/), FindBugs, [FindSecBugs](https://github.com/find-sec-bugs/find-sec-bugs/wiki/Maven-configuration), [PMD](http://maven.apache.org/plugins/maven-pmd-plugin/usage.html), [Checkstyle](http://maven.apache.org/plugins/maven-checkstyle-plugin/checkstyle-mojo))
-* [Importing External Issues](/analysis/external-issues/) (JaCoCo, Surefire)
-<!-- sonarqube -->
-* [Adding Coding Rules](/extend/adding-coding-rules/)
-<!-- /sonarqube -->