This repository contains a PMD RuleSet for detecting and preventing the use of racially charged or biased language in Java codebases.
Use the maven-pmd-plugin
and include this ruleset (and its dependency
on the com.signalfx.public:pmd-biased-language
artifact) in your
plugin configuration:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.13.0</version>
<executions>
<execution>
<id>pmd-test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.signalfx.public</groupId>
<artifactId>pmd-biased-language</artifactId>
<version>1.0.1</version>
</dependency>
</dependencies>
<configuration>
<rulesets>
<ruleset>pmd-biased-language/pmd.xml</ruleset>
</rulesets>
<excludeRoots>
<excludeRoot>target/generated-sources</excludeRoot>
</excludeRoots>
<includeTests>true</includeTests>
<linkXRef>false</linkXRef>
<printFailingErrors>true</printFailingErrors>
</configuration>
</plugin>
The default priority of the rules in this ruleset is 3, like most PMD
rules. PMD also uses a default failurePriority
of 5, meaning all rules
fail your build. If you want to use this ruleset as a warning only, you
can override the priority of its rules to 5:
<rule ref="pmd-biased-language/pmd.xml">
<priority>5</priority>
</rule>
And set <failurePriority>4</failurePriority>
in the configuration of
your maven-pmd-plugin
execution.
This PMD ruleset, its rule definitions, and the rule implementations that it contains, are all released under the terms of the Apache Software License 2.0.
- Deploy the snapshot:
$ mvn -DperformRelease=true clean deploy
- Set the version by editing the
pom.xml
file - Deploy the release:
$ mvn -DperformRelease=true clean deploy -P release
- Edit the
pom.xml
file again to go to the next snapshot version.