PMD scans Java source code and looks for potential problems like possible bugs, dead code, suboptimal code, overcomplicated expressions, and duplicate code.

learn more… | top users | synonyms

0
votes
0answers
14 views

PMD: DD/DU anomaly

I am using Eclipse with the PMD Plug-in (4.0.0.v20130510-1000) and get a lot of those violations: Found 'DD'-anomaly for variable 'freq' (lines '187'-'189'). Found 'DU'-anomaly for variable 'freq' ...
4
votes
0answers
32 views

code analyzer specifically for gwt code?

I have been going through code analyzers like pmd, findbuigs. They cover many cases and seem to be great to use. But wanted to know if there is any code analyzer specifically for gwt code?
0
votes
0answers
6 views

eclipse PMD plugin customisation is not applied

All, customised the rule named 'LongVariable' in the PMD eclipse plugin where I changed the default value 'minimum' from 17 to 30, then applied and let it recalculate. Then again I cleared all the ...
0
votes
2answers
71 views

Is java 6 or 7 compiler improves str.startWith(“a”) and converts it into str.charAt(0) == 'a' if it contains string with one character?

Eclipse plugin PMD suggests me to use str.charAt(0) == 'a' instead of str.startWith("a") But I don't want to make code more complicated and I believe that java compilers are very smart and ...
3
votes
1answer
48 views

PMD violation on for each loop (final or not?)

I just recently found out about PMD and want to improve my code with it. Therefore I have enabled all rules (and got 47000 violations :P). Anyway, I have a problem with this one: double vStd = 0, ...
0
votes
2answers
47 views

Restriction on J2SE inbuilt method

As per my company rule I can not use stop() of thread For that I want something like when I use stop(), eclipse should shows error/warning It is difficult to achieve by using checkstyle and PMD.
2
votes
1answer
38 views

Findbugs, PMD or Checkstyle rule to find access by a field

I have a class caches a set of values internally. These values can be updated periodically and the cached contents will be updated appropriately. As long as users of this class do something like: ...
0
votes
3answers
53 views

How to rewrite empty while block

I have instantiated a BufferedReader to read an input stream. It has a boolean ready() method that returns false until the reader can be read. Now I have BufferedReader br = new BufferedReader(new ...
0
votes
0answers
11 views

pmd:cpd - What is exact definition of a token?

http://pmd.sourceforge.net/pmd-4.2.5/cpd.html says that CPD uses 100 tokens by default & is configurable. http://www.onjava.com/pub/a/onjava/2003/03/12/pmd_cpd.html says that for example, ...
0
votes
0answers
41 views

Ads API: Implementing Partner Categories asks for account to be white listed. How to get white listed?

It seems that an account needs to be white listed somewhere to be able to use the new Partner Category feature. Anybody familiar with this? We tested with the account that is white listed for API ...
0
votes
0answers
69 views

How to included bundled rulesets in maven pmd plugin

I have a custom ruleset definition that refers to a bunch of rules from bundled rulesets. However, I have problems with resolving these bundled rulesets in the maven pmd plugin. Here is a related ...
0
votes
0answers
35 views

PMD error in generating report

I'm new in using PMD. I've tried to generate an XML report by right-clicking the project > PMD> Generate Reports After which this error dialog box appears. An internal error occurred during: ...
0
votes
0answers
21 views

PMD connection close false alarm

I am running the following command from command prompt. C:\java\pmd-bin-5.0.3\bin>pmd -d C:\MyClass.java -R java-design In MyClass.java I have java.sql.Connection objects. These objects are ...
2
votes
1answer
98 views

Error importing cxf projects into eclipse using m2e: Couldn't find that class org.apache.cxf.pmd.UnsafeStringConstructorRule

I check out the cxf sources and try to import a project into eclipse using "import as maven project". I then get the error: Couldn't find that class org.apache.cxf.pmd.UnsafeStringConstructorRule ...
1
vote
1answer
67 views

Is there a Sonar, Findbugs, or PMD rule that detects this possible NPE that CodePro detects?

Let's say I have a block of code like this: Map<String, Object> mappy = (Map<String, Object>)pExtraParameters.get(ServiceClientConstants.EXTRA_PARAMETERS); if ...
2
votes
3answers
79 views

Using JSP Custom Rule in PMD

I need a kind of validation to use on Sonar, which should look over JSF elements in XHTML pages verifying if the input elements contains ID attribute. (example: ) Initially I'm trying to do it using ...
2
votes
1answer
63 views

Remove a single rule check from PMD in maven plugin

I want to exclude a single PMD rule in POM, but it is not working. I have tried creating a pmd-exclude.xml (in the same dir as the pom.xml): <?xml version="1.0"?> <ruleset ...
1
vote
1answer
24 views

PMD-Eclipse: How to set suppressmarker?

As the PMD docs say, you can tell PMD to ignore a specific line by using the "NOPMD" marker but you can use whatever text string you want to suppress warnings by using the command-line ...
0
votes
1answer
244 views

Can't import PMD Ruleset in Eclipse

I would like to use the same Ruleset in my IDE (Eclipse) that my Sonar profile. I got the PMD XML ruleset from the Sonar Permalinks and would like to import it into my PMD Eclipse Plugin but when i ...
3
votes
3answers
88 views

How can I enforce documentation in Java code?

What options are there for enforcing that code is documented? I want something that will run as part of the build process e.g. a maven target that will check that code is documented (class level and ...
0
votes
0answers
32 views

Maven : generate only report

i have this POM.xml <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> ...
1
vote
0answers
42 views

PMD exclude not working

I am trying to findtune our CI and I can't figure out how to avoid that PMD reports violations on generated code (not talking about Android R file there) in src-gen: I used mvn help:effective-pom to ...
0
votes
0answers
60 views

PMD eclipse plugin running out of heap space when scanning project

I have PMD plugin installed for my Eclipse. During the scan for potential issues with the project it hangs during running. I check Eclipse log file, I see something like this : !ENTRY ...
0
votes
0answers
31 views

Gradle PMD plugin *sometimes* fails to find SAXParserFactoryImpl

When running a gradle build with the PMD plugin on, this happens sometimes, but not always. FAILURE: Build failed with an exception. * What went wrong: Could not resolve all dependencies for ...
2
votes
1answer
34 views

sonar check jquery code error

I use sonar to check jquery code, but it always throw an exception: C:\Documents and Settings\user\.jenkins\workspace\ksp2\ant\sonar_web.xml:31: com.sonar.sslr.impl.LexerException: Unable to lex url: ...
7
votes
1answer
184 views

Verify that Java classes implement toString()

As a part of the regular static analysis of my program, I would like to check that classes are likely to have sane toString() methods. Probably not that every class implements them, but perhaps that ...
3
votes
2answers
187 views

How to run all rulesets from a folder using PMD Ant in Eclipse?

I am trying to run PMD from Ant in Eclipse when I build the project. This is my build.xml file: <taskdef name="pmd" classname="net.sourceforge.pmd.ant.PMDTask"/> <target ...
0
votes
1answer
81 views

Why does PMD suggest making fields final?

I created Android application and run static analysis tool PMD on it. And what I don't get is why it is giving me warning and says to declare fields final when possible like in this example. final ...
-1
votes
1answer
97 views

Skip Maven Flex PMD

We are looking for an option in flex-pmd-maven-plugin to skip the pmd execution temporarily using a command-line option. The maven pmd plugin has a -Dpmd.skip=true option. I am looking for a similar ...
0
votes
1answer
55 views

Pmd violations with sonar

I just need a clarification about PMD with Sonar.Can we reuse Pmd reportwhich is already produced by ant..Else sonar will dynamically produce its own violation using PMD. Please help me out...For past ...
0
votes
1answer
101 views

Inevitable DD anomaly in PMD

I came across a special case where i am unable to solve the DD anomaly in PMD. Suppose the code is : BigDecimal amount = BigDecimal.ZERO; for(int i=0;i<5;i++) { amount = amount.add(i); } ...
1
vote
1answer
355 views

Can't use custom ruleset in maven-pmd-plugin 5.0.2

I want maven-pmd-plugin to include rulesets that I specify and exclude some rules (specifically, UselessParentheses) Just like described in documentation, I placed the following in pmd.xml that is ...
0
votes
0answers
42 views

Can Maven PMD plugin be used to check for Java and Javascript in one run?

Reading the documentation, I can't figure out how the Maven PMD plugin can be configured to check for Java and Javascript violation in one run. Because of our internal workflow, I would like to ...
1
vote
2answers
70 views

How to check for Java class member order

We're are using PMD and Checkstyle (from developers IDE and central CI server) to check code to our coding conventions. I was expecting for these tools to provide a rule that checks for class members ...
1
vote
2answers
388 views

PMD - Eclipse plugin - Not testing against any rules

I'm using Eclipse Juno (Service Release 1) and installed the latest version of the PMD plugin from http://sourceforge.net/projects/pmd/files/pmd-eclipse/update-site/ I can configure the plugin and ...
7
votes
1answer
71 views

Generate warnings for autoboxing use

I would like to generate warnings for ALL autoboxing and unboxing. Has anyone found an effective way? Eclipse catches basic autoboxing errors: eg. Integer i = null; i++. But fails on anything ...
0
votes
0answers
93 views

Static analysis [closed]

Nowadays we used to know static analysis tools like findbugs, pmd, and many more. In findbugs they use linear bytecode scanning. Now for my final project, I develop tools almost like a findbugs but ...
0
votes
2answers
298 views

Share specific PMD rulesets across multi module maven project

I'm trying to share the same pmd configuration across all my submodules. I'm looking for the best way to achieve that I thought that I could place it in the parent project, like I did it for ...
0
votes
0answers
64 views

pmd eclipse jdk compatibility

I have installed version 3.2.6.v200903300643 of the PMD Plug-in for Eclipse (which is version 3.7.*). When I try to run the Generate Abstract Syntax Tree, I get the following error PMD Exception : ...
0
votes
0answers
102 views

maven-pmd-plugin external custom ruleset doesn't work

I'm using this in my pom in the reporting section: <plugin> <groupId>org.apache.maven.plugins</groupId> ...
1
vote
2answers
62 views

Eclipse duplication annotation @SurpressWarnings for PMD

I am trying to disable several arbitrary PMD warnings for my class. How can I list several PMD rules to be ignored? I was not able to find with Google. @SuppressWarnings("PMD.OnlyOneReturn") ...
1
vote
1answer
66 views

Eclipse PMD automatic reparse once source file is updated?

I am using PMD plugin under Eclipse. How can one force PMD plugin to reparse a source file once it is updated to eliminate fixed warnings? After right click on a project name in Package Explorer, I ...
0
votes
1answer
77 views

PMD XPath rule that finds methods that use a class field whose name is not known ahead of time

I have a requirement to look for JPA persistent classes that use the JPA ID attribute in its equals() method. For example, the following class would trigger a PMD rule violation: @Entity public class ...
1
vote
1answer
151 views

Why is PMD OK from command line, but does not work from within Maven?

After many years of successful use of PMD with Ant, I am now trying without success to get PMD to work from within Maven. To illustrate my problem, I have created a simple Maven system (based upon ...
0
votes
0answers
56 views

Writing a XPath PMD Rule to prevent certain imports from within a specific package

I need a new PMD rule (writing it as an XPath rule) to prevent any files within package X from importing Y or Z. So far in my rule I have: ...
1
vote
1answer
81 views

DD/DU warnings from PMD [duplicate]

Possible Duplicate: What is the reason for these PMD rules? Why I get DD/DU warnings? Here is my code: // DD warning from PMD public Object foo() { Object result = null; if ...
2
votes
3answers
80 views

Dynamically report about new Java's software-quality violations in IDE

since I discovered advantages of using Findbugs, PMD and Checkstyle I use it almost every day. But if I would like to check recently created piece of code I need to proceed analyse manually. I would ...
1
vote
1answer
150 views

PMD rules: How to properly solve this DD-anomaly issue

I have the following android code: public final List<MyObj> getList() { Cursor cursor = null; try { final String queryStr = GET_LIST_STATEMENT; cursor = ...
0
votes
0answers
43 views

How to work with pagemaker files using php or javascript

I want to extract data from the old page maker files(file extension .pmd or .p65) using php or javascript. Is there a way a framework or library or inbuilt entity in these two languages that would ...
0
votes
1answer
247 views

maven pmd plugin reports no problems

I have configured the maven pmd plugin into a maven parent pom that I use with a test project called MFactors3. When I build this tiny project using m2Eclipse in Eclipse PMD reports a good number of ...

1 2 3 4 5