[ 
https://jira.codehaus.org/browse/MCHECKSTYLE-152?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Herve Boutemy updated MCHECKSTYLE-152:
--------------------------------------

    Description: 
1. In the pom.xml i set property <encoding>: 
{code:xml}<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-checkstyle-plugin</artifactId>
    <version>2.6</version>
    <configuration>
        <encoding>UTF-8</encoding>
    </configuration>
</plugin>{code}

2. When i run the checkstyle (mvn checkstyle:checkstyle) this property is not 
set to "charset" attribute.

3. I noticed that this functionality works for version 2.2. However it does not 
work for versions 2.4 and above. I think that this functionality does not work 
after some refactoring is done and this functionality is moved in 
org.apache.maven.plugin.checkstyle.DefaultCheckstyleExecutor -> "public 
Configuration getConfiguration( CheckstyleExecutorRequest request )". 
The problem is that in this method the developer tries to find the Checker 
module and to set its "charset" attribute as a child of the "config" object. 
However the "config" object it the Checker module itself.  
Fix is simple - just take out adding of "charset" attribute value from the for 
cycle.
I will attach the class with the new code and difference between the new and 
old code.

I hope this bug can be fixed soon.
Thanks!

Best regards,
Svetlomira


  was:
1. In the pom.xml i set property <encoding>: 
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-checkstyle-plugin</artifactId>
    <version>2.6</version>
    <configuration>
        <encoding>UTF-8</encoding>
    </configuration>
</plugin>

2. When i run the checkstyle (mvn checkstyle:checkstyle) this property is not 
set to "charset" attribute.

3. I noticed that this functionality works for version 2.2. However it does not 
work for versions 2.4 and above. I think that this functionality does not work 
after some refactoring is done and this functionality is moved in 
org.apache.maven.plugin.checkstyle.DefaultCheckstyleExecutor -> "public 
Configuration getConfiguration( CheckstyleExecutorRequest request )". 
The problem is that in this method the developer tries to find the Checker 
module and to set its "charset" attribute as a child of the "config" object. 
However the "config" object it the Checker module itself.  
Fix is simple - just take out adding of "charset" attribute value from the for 
cycle.
I will attach the class with the new code and difference between the new and 
old code.

I hope this bug can be fixed soon.
Thanks!

Best regards,
Svetlomira


    
> encoding property in maven plugin is never set correctly to charset property 
> of the checkstyle itself.
> ------------------------------------------------------------------------------------------------------
>
>                 Key: MCHECKSTYLE-152
>                 URL: https://jira.codehaus.org/browse/MCHECKSTYLE-152
>             Project: Maven 2.x Checkstyle Plugin
>          Issue Type: Bug
>    Affects Versions: 2.4, 2.5, 2.6
>         Environment: Windows x
>            Reporter: Svetlomira Manova
>            Assignee: Dennis Lundberg
>             Fix For: 2.9
>
>         Attachments: DefaultCheckstyleExecutor.java, fix_CodeDifference.jpg, 
> mychanges.patch, src.zip
>
>
> 1. In the pom.xml i set property <encoding>: 
> {code:xml}<plugin>
>     <groupId>org.apache.maven.plugins</groupId>
>     <artifactId>maven-checkstyle-plugin</artifactId>
>     <version>2.6</version>
>     <configuration>
>         <encoding>UTF-8</encoding>
>     </configuration>
> </plugin>{code}
> 2. When i run the checkstyle (mvn checkstyle:checkstyle) this property is not 
> set to "charset" attribute.
> 3. I noticed that this functionality works for version 2.2. However it does 
> not work for versions 2.4 and above. I think that this functionality does not 
> work after some refactoring is done and this functionality is moved in 
> org.apache.maven.plugin.checkstyle.DefaultCheckstyleExecutor -> "public 
> Configuration getConfiguration( CheckstyleExecutorRequest request )". 
> The problem is that in this method the developer tries to find the Checker 
> module and to set its "charset" attribute as a child of the "config" object. 
> However the "config" object it the Checker module itself.  
> Fix is simple - just take out adding of "charset" attribute value from the 
> for cycle.
> I will attach the class with the new code and difference between the new and 
> old code.
> I hope this bug can be fixed soon.
> Thanks!
> Best regards,
> Svetlomira

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://jira.codehaus.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to