[ http://jira.codehaus.org/browse/MNG-722?page=comments#action_44500 ]
Incze Lajos commented on MNG-722:
---------------------------------
OK. I've tracked down the problem. The velocity propery is involved only when it
is the template engine that creates the output writer. In this case it is the
DoxiaMojo
that crates the output writer using the java.io.FileWriter which uses the
platform
default encoding (nowadays it is mostly UTF-8).
So, every place, where DoxiaMojo uses
new FileWriter(..)
this should be replaced by
new OutputStreamWriter(new FileOutputStream(...), outputEncoding)
> maven-site-plugin maven-site.vm contains wired encoding
> -------------------------------------------------------
>
> Key: MNG-722
> URL: http://jira.codehaus.org/browse/MNG-722
> Project: Maven 2
> Type: Bug
> Components: maven-plugins
> Versions: 2.0-beta-1
> Environment: all
> Reporter: Incze Lajos
> Assignee: Vincent Siveton
>
>
> maven-site-plugin maven-site.vm contains wired encoding:
> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
> It probably needs a conf. parameter and changed to
> <meta http-equiv="Content-Type" content="text/html; charset=$outputEncoding"
> />
--
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]