we are evaluating PMD and PLSQL doc extensions, so far with mixed results :-)
In our source repository, we version packages with .spc and .bdy extensions, which is a default assigned by PL/SQL developer. To add these extensions, we had to modify /pmd/pmd-plsql/src/main/java/net/sourceforge/pmd/lang/plsql/PLSQLLanguageModule.java add new extensions there.
Is there a way to add these recognized extensions by configuration?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The file suffix handling is standard to the PMD project: PLSQL just squats as a guest language. As far as I recall there is no mechanism to override the defaults in the PMD framework.
If you use the Maven pldoc-pmd-plugin you can pass a fileset and specify that the processing language is PLSQL.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
we are evaluating PMD and PLSQL doc extensions, so far with mixed results :-)
In our source repository, we version packages with .spc and .bdy extensions, which is a default assigned by PL/SQL developer. To add these extensions, we had to modify /pmd/pmd-plsql/src/main/java/net/sourceforge/pmd/lang/plsql/PLSQLLanguageModule.java add new extensions there.
Is there a way to add these recognized extensions by configuration?
I'm sorry that I took this long to reply.
The file suffix handling is standard to the PMD project: PLSQL just squats as a guest language. As far as I recall there is no mechanism to override the defaults in the PMD framework.
If you use the Maven pldoc-pmd-plugin you can pass a fileset and specify that the processing language is PLSQL.