Author: veithen
Date: Sun Nov 15 14:42:29 2015
New Revision: 1714458
URL: http://svn.apache.org/viewvc?rev=1714458&view=rev
Log:
Fix an issue in the maven-javadoc-plugin configuration.
Modified:
webservices/parent/trunk/pom.xml
Modified: webservices/parent/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/parent/trunk/pom.xml?rev=1714458&r1=1714457&r2=1714458&view=diff
==============================================================================
--- webservices/parent/trunk/pom.xml (original)
+++ webservices/parent/trunk/pom.xml Sun Nov 15 14:42:29 2015
@@ -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 © {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>