You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "Nick Giles (JIRA)" <ji...@codehaus.org> on 2006/02/15 15:25:20 UTC

[jira] Created: (MPMD-16) Utilise the exclusion mechanism to allow arbitrary exclusions

Utilise the exclusion mechanism to allow arbitrary exclusions
-------------------------------------------------------------

         Key: MPMD-16
         URL: http://jira.codehaus.org/browse/MPMD-16
     Project: Maven 2.x Pmd Plugin
        Type: Improvement

    Versions: 2.0-beta-2    
    Reporter: Nick Giles
    Priority: Minor
 Attachments: MPMD-16.patch

Files named package-info.java are currently excluded through some hard-coding, but the same mechanism can helpfully be used to exclude any user-defined set of classes, for instance if they are generated files that you don't care about the code quality of. Or in my case if some classes are caught by a bug in the PMD grammar. Patch to follow.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Updated: (MPMD-16) Utilise the exclusion mechanism to allow arbitrary exclusions

Posted by "Joakim Erdfelt (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MPMD-16?page=all ]

Joakim Erdfelt updated MPMD-16:
-------------------------------

    Attachment:     (was: MPMD-16.1.patch)

> Utilise the exclusion mechanism to allow arbitrary exclusions
> -------------------------------------------------------------
>
>          Key: MPMD-16
>          URL: http://jira.codehaus.org/browse/MPMD-16
>      Project: Maven 2.x Pmd Plugin
>         Type: Improvement

>     Versions: 2.0-beta-2
>     Reporter: Nick Giles
>     Priority: Minor
>  Attachments: MPMD-16.2.patch, MPMD-16.patch
>
>
> Files named package-info.java are currently excluded through some hard-coding, but the same mechanism can helpfully be used to exclude any user-defined set of classes, for instance if they are generated files that you don't care about the code quality of. Or in my case if some classes are caught by a bug in the PMD grammar. Patch to follow.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Updated: (MPMD-16) Utilise the exclusion mechanism to allow arbitrary exclusions

Posted by "Joakim Erdfelt (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MPMD-16?page=all ]

Joakim Erdfelt updated MPMD-16:
-------------------------------

    Attachment: MPMD-16.2.patch

> Utilise the exclusion mechanism to allow arbitrary exclusions
> -------------------------------------------------------------
>
>          Key: MPMD-16
>          URL: http://jira.codehaus.org/browse/MPMD-16
>      Project: Maven 2.x Pmd Plugin
>         Type: Improvement

>     Versions: 2.0-beta-2
>     Reporter: Nick Giles
>     Priority: Minor
>  Attachments: MPMD-16.2.patch, MPMD-16.patch
>
>
> Files named package-info.java are currently excluded through some hard-coding, but the same mechanism can helpfully be used to exclude any user-defined set of classes, for instance if they are generated files that you don't care about the code quality of. Or in my case if some classes are caught by a bug in the PMD grammar. Patch to follow.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Updated: (MPMD-16) Utilise the exclusion mechanism to allow arbitrary exclusions

Posted by "Joakim Erdfelt (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MPMD-16?page=all ]

Joakim Erdfelt updated MPMD-16:
-------------------------------

    Attachment:     (was: MPMD-16.2.patch)

> Utilise the exclusion mechanism to allow arbitrary exclusions
> -------------------------------------------------------------
>
>          Key: MPMD-16
>          URL: http://jira.codehaus.org/browse/MPMD-16
>      Project: Maven 2.x Pmd Plugin
>         Type: Improvement

>     Versions: 2.0-beta-2
>     Reporter: Nick Giles
>     Priority: Minor
>  Attachments: MPMD-16.2.patch, MPMD-16.patch
>
>
> Files named package-info.java are currently excluded through some hard-coding, but the same mechanism can helpfully be used to exclude any user-defined set of classes, for instance if they are generated files that you don't care about the code quality of. Or in my case if some classes are caught by a bug in the PMD grammar. Patch to follow.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Updated: (MPMD-16) Utilise the exclusion mechanism to allow arbitrary exclusions

Posted by "Nick Giles (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MPMD-16?page=all ]

Nick Giles updated MPMD-16:
---------------------------

    Attachment: MPMD-16.patch

> Utilise the exclusion mechanism to allow arbitrary exclusions
> -------------------------------------------------------------
>
>          Key: MPMD-16
>          URL: http://jira.codehaus.org/browse/MPMD-16
>      Project: Maven 2.x Pmd Plugin
>         Type: Improvement

>     Versions: 2.0-beta-2
>     Reporter: Nick Giles
>     Priority: Minor
>  Attachments: MPMD-16.patch
>
>
> Files named package-info.java are currently excluded through some hard-coding, but the same mechanism can helpfully be used to exclude any user-defined set of classes, for instance if they are generated files that you don't care about the code quality of. Or in my case if some classes are caught by a bug in the PMD grammar. Patch to follow.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Updated: (MPMD-16) Utilise the exclusion mechanism to allow arbitrary exclusions

Posted by "Joakim Erdfelt (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MPMD-16?page=all ]

Joakim Erdfelt updated MPMD-16:
-------------------------------

    Attachment: MPMD-16.2.patch

> Utilise the exclusion mechanism to allow arbitrary exclusions
> -------------------------------------------------------------
>
>          Key: MPMD-16
>          URL: http://jira.codehaus.org/browse/MPMD-16
>      Project: Maven 2.x Pmd Plugin
>         Type: Improvement

>     Versions: 2.0-beta-2
>     Reporter: Nick Giles
>     Priority: Minor
>  Attachments: MPMD-16.2.patch, MPMD-16.patch
>
>
> Files named package-info.java are currently excluded through some hard-coding, but the same mechanism can helpfully be used to exclude any user-defined set of classes, for instance if they are generated files that you don't care about the code quality of. Or in my case if some classes are caught by a bug in the PMD grammar. Patch to follow.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Closed: (MPMD-16) Utilise the exclusion mechanism to allow arbitrary exclusions

Posted by "Carlos Sanchez (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MPMD-16?page=all ]
     
Carlos Sanchez closed MPMD-16:
------------------------------

      Assign To: Carlos Sanchez
     Resolution: Fixed
    Fix Version: 2.0-beta-2

> Utilise the exclusion mechanism to allow arbitrary exclusions
> -------------------------------------------------------------
>
>          Key: MPMD-16
>          URL: http://jira.codehaus.org/browse/MPMD-16
>      Project: Maven 2.x Pmd Plugin
>         Type: Improvement

>     Versions: 2.0-beta-2
>     Reporter: Nick Giles
>     Assignee: Carlos Sanchez
>     Priority: Minor
>      Fix For: 2.0-beta-2
>  Attachments: MPMD-16.2.patch, MPMD-16.patch
>
>
> Files named package-info.java are currently excluded through some hard-coding, but the same mechanism can helpfully be used to exclude any user-defined set of classes, for instance if they are generated files that you don't care about the code quality of. Or in my case if some classes are caught by a bug in the PMD grammar. Patch to follow.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Updated: (MPMD-16) Utilise the exclusion mechanism to allow arbitrary exclusions

Posted by "Joakim Erdfelt (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MPMD-16?page=all ]

Joakim Erdfelt updated MPMD-16:
-------------------------------

    Attachment: MPMD-16.1.patch

> Utilise the exclusion mechanism to allow arbitrary exclusions
> -------------------------------------------------------------
>
>          Key: MPMD-16
>          URL: http://jira.codehaus.org/browse/MPMD-16
>      Project: Maven 2.x Pmd Plugin
>         Type: Improvement

>     Versions: 2.0-beta-2
>     Reporter: Nick Giles
>     Priority: Minor
>  Attachments: MPMD-16.1.patch, MPMD-16.patch
>
>
> Files named package-info.java are currently excluded through some hard-coding, but the same mechanism can helpfully be used to exclude any user-defined set of classes, for instance if they are generated files that you don't care about the code quality of. Or in my case if some classes are caught by a bug in the PMD grammar. Patch to follow.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org