]> source.dussan.org Git - sonarqube.git/commitdiff
Fix branch properties description
authorDuarte Meneses <duarte.meneses@sonarsource.com>
Tue, 3 Oct 2017 13:34:34 +0000 (15:34 +0200)
committerDuarte Meneses <duarte.meneses@sonarsource.com>
Tue, 3 Oct 2017 15:40:06 +0000 (17:40 +0200)
sonar-core/src/main/java/org/sonar/core/config/ScannerProperties.java

index 6faa75cc87a07570bef8124a82f8d0cce497758c..b8e25cb324eb970710594305222601f65a8b51c4 100644 (file)
@@ -69,14 +69,15 @@ public class ScannerProperties {
         .build(),
       PropertyDefinition.builder(BRANCH_NAME)
         .name("Optional name of SonarQube/SCM branch")
-        .description("TODO")
+        .description("Provide a name for the branch being analyzed. It might match an existing branch of the project, otherwise a new branch will be created.")
         .hidden()
         .build(),
       PropertyDefinition.builder(BRANCH_TARGET)
-        .name("Optional name of target branch to merge into, and the base to determine changed files")
-        .description("TODO")
+        .name("Optional name of target branch to merge into")
+        .description(
+          "Defines what is the target branch of the branch being analyzed. The main branch cannot have a target. "
+            + "If no target is defined for other branches, the main branch is used as a target.")
         .hidden()
-        .build()
-      );
+        .build());
   }
 }