You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ch...@apache.org on 2018/01/11 01:33:45 UTC

commons-release-plugin git commit: Adding encoding to the pom

Repository: commons-release-plugin
Updated Branches:
  refs/heads/1.0 cd36740c2 -> 551ed846f


Adding encoding to the pom


Project: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/commit/551ed846
Tree: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/tree/551ed846
Diff: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/diff/551ed846

Branch: refs/heads/1.0
Commit: 551ed846f819f3aa44cda170d12d6c3f2147e51f
Parents: cd36740
Author: Rob Tompkins <ch...@apache.org>
Authored: Wed Jan 10 20:33:37 2018 -0500
Committer: Rob Tompkins <ch...@apache.org>
Committed: Wed Jan 10 20:33:37 2018 -0500

----------------------------------------------------------------------
 pom.xml | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-release-plugin/blob/551ed846/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index abe6887..8bc0fc2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -89,6 +89,13 @@
         <commons.jacoco.lineRatio>0.1</commons.jacoco.lineRatio>
         <commons.jacoco.complexityRatio>0.1</commons.jacoco.complexityRatio>
         <commons.jacoco.haltOnFailure>true</commons.jacoco.haltOnFailure>
+        <commons.encoding>iso-8859-1</commons.encoding>
+        <!-- used in this pom to provide the Javadoc HTML file encoding -->
+        <commons.docEncoding>${commons.encoding}</commons.docEncoding>
+        <!-- Define source encoding for filtering; used by general plugins -->
+        <project.build.sourceEncoding>${commons.encoding}</project.build.sourceEncoding>
+        <!-- This is used by reporting plugins -->
+        <project.reporting.outputEncoding>${commons.encoding}</project.reporting.outputEncoding>
     </properties>
 
     <dependencies>