Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rule name changes #17

Merged
merged 2 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
otj-pmd-rulesets changelog
==========================

7.0.3
-----
* Several rules changed their names (to remove their junit specific naming)

7.0.2
----
* AvoidSynchronizedStatement is excluded. It's a stupid rule, put in to help
Expand All @@ -14,7 +18,8 @@ people not run afoul of Virtual Threads, but... it's just a bad rule.

7.0.0
-----
* For PMD 7 compataibility - should NOT be used with PMD < 7
* For PMD 7 compatibility - should NOT be used with PMD < 7

1.2.8
-----
* Customize AvoidDuplicateLiterals to be less annoying
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/otj-pmd-rulesets/ot-pmd.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
<exclude name="AccessorMethodGeneration" />
<exclude name="AvoidReassigningParameters" />
<exclude name="UseVarargs" />
<exclude name="JUnitTestContainsTooManyAsserts" />
<exclude name="JUnitAssertionsShouldIncludeMessage" />
<exclude name="UnitTestContainsTooManyAsserts" />
<exclude name="UnitTestAssertionsShouldIncludeMessage" />
<exclude name="GuardLogStatement" />
<exclude name="JUnit4TestShouldUseTestAnnotation" />
<exclude name="UnitTestShouldUseTestAnnotation" />
<exclude name="UnusedFormalParameter"/>
<!-- added -->
<exclude name="MissingOverride" />
Expand Down