]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-11508 Change message
authorJulien HENRY <julien.henry@sonarsource.com>
Tue, 11 Dec 2018 10:33:34 +0000 (11:33 +0100)
committersonartech <sonartech@sonarsource.com>
Wed, 16 Jan 2019 08:43:09 +0000 (09:43 +0100)
sonar-scanner-engine/src/main/java/org/sonar/scanner/scan/filesystem/FileIndexer.java
sonar-scanner-engine/src/test/java/org/sonar/scanner/mediumtest/fs/FileSystemMediumTest.java

index 2eeecf9c0003bd2b07429b27e432befc8c8ed1b5..c2ad796935f6db1014bb7c1046e9b68e627b554b 100644 (file)
@@ -110,7 +110,8 @@ public class FileIndexer {
       if (projectExclusionFilters.equals(moduleExclusionFilters)) {
         warnOnceDeprecatedExclusion(
           "Specifying module-relative paths at project level in the files exclusions/inclusions properties is deprecated. " +
-            "To continue excluding files like '" + projectRelativePath + "' from the analysis, update this property so that patterns refer to project-relative paths.");
+            "To continue including/excluding files like '" + projectRelativePath + "' from the analysis, " +
+            "update these properties so that patterns refer to project-relative paths.");
       }
       excludedByPatternsCount.incrementAndGet();
       return;
index 49e23ec62aa1d5e80a15fe5f16bb3edf506f4575..b93776906e456c2c2faaf82d1e18754640d9b59e 100644 (file)
@@ -576,7 +576,7 @@ public class FileSystemMediumTest {
 
     assertThat(logTester.logs(LoggerLevel.WARN))
       .contains("Specifying module-relative paths at project level in the files exclusions/inclusions properties is deprecated. " +
-        "To continue excluding files like 'moduleA/src/sample.xoo' from the analysis, update this property so that patterns refer to project-relative paths.");
+        "To continue including/excluding files like 'moduleA/src/sample.xoo' from the analysis, update these properties so that patterns refer to project-relative paths.");
   }
 
   @Test