Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
pmd-src-6.14.0.zip | 2019-04-28 | 30.6 MB | |
pmd-bin-6.14.0.zip | 2019-04-28 | 47.9 MB | |
pmd-doc-6.14.0.zip | 2019-04-28 | 3.8 MB | |
PMD 6.14.0 (28-April-2019).tar.gz | 2019-04-28 | 10.6 MB | |
PMD 6.14.0 (28-April-2019).zip | 2019-04-28 | 12.8 MB | |
README.md | 2019-04-28 | 4.6 kB | |
Totals: 6 Items | 105.6 MB | 0 |
28-April-2019 - 6.14.0
The PMD team is pleased to announce PMD 6.14.0.
This is a minor release.
Table Of Contents
New and noteworthy
Dart support
Thanks to the contribution from Maikel Steneker, and built on top of the ongoing efforts to fully support Antlr-based languages, PMD now has CPD support for Dart.
Being based on a proper Antlr grammar, CPD can: * ignore comments * ignore imports / libraries * honor comment-based suppressions
Updated PMD Designer
This PMD release ships a new version of the pmd-designer. For the changes, see PMD Designer Changelog.
Modified Rules
-
The Java rule
AssignmentToNonFinalStatic
(java-errorprone
) will now report on each assignment made within a constructor rather than on the field declaration. This makes it easier for developers to find the offending statements. -
The Java rule
NoPackage
(java-codestyle
) will now report additionally enums and annotations that do not have a package declaration.
Fixed Issues
- all
- go
- #1751: [go] Parsing errors encountered with escaped backslash
- java
- java-bestpractices
- java-codestyle
- java-design
- #1760: [java] UseObjectForClearerAPI flags private methods
API Changes
No changes.
External Contributions
- #1745: [doc] Fixed some errors in docs - 0xflotus
- #1746: [java] Update rule to prevent UnusedImport when using JavaDoc with array type - itaigilo
- #1752: [java] UseObjectForClearerAPI Only For Public - Björn Kautler
- #1761: [dart] [cpd] Added CPD support for Dart - Maikel Steneker
- #1776: [java] Show more detailed message when can't resolve field type - Andrey Fomin
- #1781: [java] Location change in AssignmentToNonFinalStatic - Maikel Steneker
- #1789: [cpd] [core] Use current classloader instead of Thread's classloader - Andreas Schmid
- #1791: [dart] [cpd] Dart escaped string - Maikel Steneker