You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2013/03/19 01:21:18 UTC

git commit: added information about encoding configuration

Updated Branches:
  refs/heads/master 10983877d -> e438f1140


added information about encoding configuration

Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/e438f114
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/e438f114
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/e438f114

Branch: refs/heads/master
Commit: e438f1140e1072f6a02146deb074a331bed7500c
Parents: 1098387
Author: Hervé Boutemy <hb...@apache.org>
Authored: Tue Mar 19 01:21:13 2013 +0100
Committer: Hervé Boutemy <hb...@apache.org>
Committed: Tue Mar 19 01:21:13 2013 +0100

----------------------------------------------------------------------
 maven-model-builder/src/site/apt/index.apt |   23 ++++++++++++++++++++---
 1 files changed, 20 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/e438f114/maven-model-builder/src/site/apt/index.apt
----------------------------------------------------------------------
diff --git a/maven-model-builder/src/site/apt/index.apt b/maven-model-builder/src/site/apt/index.apt
index 2553020..bd32221 100644
--- a/maven-model-builder/src/site/apt/index.apt
+++ b/maven-model-builder/src/site/apt/index.apt
@@ -3,7 +3,7 @@
  -----
  Hervé Boutemy
  -----
- 2011-09-03
+ 2013-03-19
  -----
 
 Maven Model Builder
@@ -120,6 +120,23 @@ Maven Model Builder
 | <<<settings.*>>> | Local user settings (see {{{../maven-settings/settings.xml/settings.html}settings reference}}) | <<<$\{settings.localRepository\}>>> |
 *----+------+------+
 
-  Notice that after model interpolation, <<<$\{...\}>>> content can remain in the model that will be evaluated later
+**  Notice
+
+  * after model interpolation, <<<$\{...\}>>> content can remain in the model that will be evaluated later
   when setting plugin parameters. This happens in particular with <<<settings.*>>> values for
-  {{{../maven-settings/settings.html}Settings Model}}.
+  {{{../maven-settings/settings.html}Settings Model}},
+
+  * encoding configuration have been defined as POM properties looking like POM content but not added to POM model to maintain
+  compatibility with previous Maven versions: 
+
+    * <<<$\{project.build.sourceEncoding\}>>> for
+    {{{http://docs.codehaus.org/display/MAVENUSER/POM+Element+for+Source+File+Encoding}source files encoding}}
+    (defaults to platform encoding)
+
+    * <<<$\{project.reporting.outputEncoding\}>>> for
+    {{{https://cwiki.apache.org/confluence/display/MAVENOLD/Reporting+Encoding+Configuration}reporting output files encoding}}
+    (defaults to <<<UTF-8>>>)
+
+    []
+
+  []