Skip to content

Commit

Permalink
Standardize plaintext masks across Maven, Gradle and CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Nov 29, 2023
1 parent c4d0ef2 commit c48bb64
Showing 1 changed file with 25 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -333,26 +333,33 @@ public void exclusion(Collection<String> exclusions) {
public List<String> getPlainTextMasks() {
if (plainTextMasks.isEmpty()) {
plainTextMasks.addAll(Arrays.asList(
"**gradlew",
"**META-INF/services/**",
"**/META-INF/spring.factories",
"**/META-INF/spring/**",
"**.bash",
"**.bat",
"**/*.adoc",
"**/*.bash",
"**/*.bat",
"**/CODEOWNERS",
"**Dockerfile",
"**.gitattributes",
"**.gitignore",
"**.java-version",
"**.jsp",
"**.ksh",
"**.kts",
"**/*.css",
"**/*.config",
"**/Dockerfile*",
"**/.gitattributes",
"**/.gitignore",
"**/*.htm*",
"**/gradlew",
"**/.java-version",
"**/*.jsp",
"**/*.ksh",
"**/lombok.config",
"**.qute.java",
"**.sdkmanrc",
"**.sh",
"**.sql",
"**.txt"
"**/*.md",
"**/*.mf",
"**/META-INF/services/**",
"**/META-INF/spring/**",
"**/META-INF/spring.factories",
"**/mvnw",
"**/*.qute.java",
"**/.sdkmanrc",
"**/*.sh",
"**/*.sql",
"**/*.svg",
"**/*.txt"
));
}
return plainTextMasks;
Expand Down

0 comments on commit c48bb64

Please sign in to comment.