Reputation: 35
I have successfully installed PMD in JUNO(Eclipse) but not able to see it in the properties. I want to run the Project on PMD.
Upvotes: 1
Views: 3169
Reputation:
Actually the confusion point is that for PMD you have to enable it first by clicking on properties of each project.
select project-> Properties-> select PMD-> enable
This is the gernaral issue many have faced this. you can check screen shot in below answer as well.
After Installing PMD in Luna in Prespective it is Not Showing?
Upvotes: 2
Reputation: 545
There are two PMD plug-ins for Eclipse: PMD for Eclipse and eclipse-pmd.
If you've installed the PMD plug-in using the Eclipse marketplace then you're using eclipse-pmd which requires Eclipse to run on a JVM version 7 or later. If you're running Eclipse on a JVM version 6 or earlier and you're using eclipse-pmd 0.7 or earlier the PMD property page won't be visible.
To solve this problem you have to run Eclipse on a JVM version 7 or later. To change the JVM on which Eclipse runs you have to set the parameter -vm
in your eclipse.ini accordingly. The Eclipse Wiki explains how to specify the JVM.
Upvotes: 0