You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by dk...@apache.org on 2019/11/07 20:15:52 UTC

[ws-parent] 11/18: Fix an issue in the maven-javadoc-plugin configuration.

This is an automated email from the ASF dual-hosted git repository.

dkulp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-parent.git

commit cc616233d1904654f7e891ef69654aa9b58b4a7d
Author: veithen <ve...@13f79535-47bb-0310-9956-ffa450edef68>
AuthorDate: Sun Nov 15 14:42:29 2015 +0000

    Fix an issue in the maven-javadoc-plugin configuration.
---
 pom.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 2cf2815..7d29183 100644
--- a/pom.xml
+++ b/pom.xml
@@ -70,7 +70,10 @@
                              of changes between releases (to avoid mass changes when committing the site for a new release) -->
                         <notimestamp>true</notimestamp>
                         <windowtitle>${project.name} API</windowtitle>
-                        <bottom>Copyright © {organizationName}. All Rights Reserved.</bottom>
+                        <!-- Use entity references here to avoid charset encoding issues (the string is passed as
+                             a command line argument to the javadoc util and it's tricky to get charset encoding
+                             right in this case). -->
+                        <bottom><![CDATA[Copyright &copy; {organizationName}. All Rights Reserved.]]></bottom>
                         <!-- doctitle only appears in the summary and we should include the version there -->
                         <doctitle>${project.name} ${project.version} API</doctitle>
                     </configuration>