diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2011-12-22 14:51:08 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2011-12-22 14:51:08 +0100 |
commit | 2b75ca36f7546d358d7f65861f858086371b8ade (patch) | |
tree | 604e2d3fc96022bc91efd0e73ff79edadb0fc0db /sonar-plugin-api/test-resources/org/sonar/api/resources | |
parent | 5d02d93ba42efbf926d25126f746a632b922b1ca (diff) | |
download | sonarqube-2b75ca36f7546d358d7f65861f858086371b8ade.tar.gz sonarqube-2b75ca36f7546d358d7f65861f858086371b8ade.zip |
SONAR-3096 Exclude source sub-directories starting with a dot
Diffstat (limited to 'sonar-plugin-api/test-resources/org/sonar/api/resources')
3 files changed, 5 insertions, 0 deletions
diff --git a/sonar-plugin-api/test-resources/org/sonar/api/resources/DefaultProjectFileSystemTest/shouldExcludeDirectoriesStartingWithDot/src/org/.dirPrefixedWithDot/Excluded.java b/sonar-plugin-api/test-resources/org/sonar/api/resources/DefaultProjectFileSystemTest/shouldExcludeDirectoriesStartingWithDot/src/org/.dirPrefixedWithDot/Excluded.java new file mode 100644 index 00000000000..9578920820c --- /dev/null +++ b/sonar-plugin-api/test-resources/org/sonar/api/resources/DefaultProjectFileSystemTest/shouldExcludeDirectoriesStartingWithDot/src/org/.dirPrefixedWithDot/Excluded.java @@ -0,0 +1 @@ +public class Excluded2 {}
\ No newline at end of file diff --git a/sonar-plugin-api/test-resources/org/sonar/api/resources/DefaultProjectFileSystemTest/shouldExcludeDirectoriesStartingWithDot/src/org/.sonar/Excluded2.java b/sonar-plugin-api/test-resources/org/sonar/api/resources/DefaultProjectFileSystemTest/shouldExcludeDirectoriesStartingWithDot/src/org/.sonar/Excluded2.java new file mode 100644 index 00000000000..9578920820c --- /dev/null +++ b/sonar-plugin-api/test-resources/org/sonar/api/resources/DefaultProjectFileSystemTest/shouldExcludeDirectoriesStartingWithDot/src/org/.sonar/Excluded2.java @@ -0,0 +1 @@ +public class Excluded2 {}
\ No newline at end of file diff --git a/sonar-plugin-api/test-resources/org/sonar/api/resources/DefaultProjectFileSystemTest/shouldExcludeDirectoriesStartingWithDot/src/org/sonar/Included.java b/sonar-plugin-api/test-resources/org/sonar/api/resources/DefaultProjectFileSystemTest/shouldExcludeDirectoriesStartingWithDot/src/org/sonar/Included.java new file mode 100644 index 00000000000..78e1aabbba7 --- /dev/null +++ b/sonar-plugin-api/test-resources/org/sonar/api/resources/DefaultProjectFileSystemTest/shouldExcludeDirectoriesStartingWithDot/src/org/sonar/Included.java @@ -0,0 +1,3 @@ +package org.sonar; + +public class Included {}
\ No newline at end of file |