This is an automated email from the git hooks/post-receive script. New change to branch develop in repository i18n. See http://git.nuiton.org/i18n.git from 40f58c1 refs #3350: Review site new 29266eb refs #3356 add new csv package with the 3 new mojos + deprecates csv generation in bundle mojo new c620165 refs #3356 improve merge mojo + add mini doc new 4c6a79c refs #3356 : add the generated csv file in the classpath new f44c18d fixes #3357: Remove deprecated Tapestry mojo new 772ea4f refs #3356 : improve the way of storing the generated csv file + fix doc new aa99cc4 fixes #3358: Sanity mojo parameters new 0ed5ca8 Merge branch 'feature/3356' into develop The 7 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 0ed5ca8ae4141433a6c35ca8c8d495fb534891f1 Merge: 40f58c1 aa99cc4 Author: Tony CHEMIT <chemit@codelutin.com> Date: Sun Jul 27 13:07:03 2014 +0200 Merge branch 'feature/3356' into develop commit aa99cc4eaa80f6b993f7ce9b808f678a6ea325aa Author: Tony CHEMIT <chemit@codelutin.com> Date: Sun Jul 27 13:05:35 2014 +0200 fixes #3358: Sanity mojo parameters commit 772ea4ffb86e9816c9a26bd5fa7d16f8ea41ef57 Author: Tony CHEMIT <chemit@codelutin.com> Date: Sun Jul 27 13:05:11 2014 +0200 refs #3356 : improve the way of storing the generated csv file + fix doc commit f44c18d1d2d727adb4f8154fbc4ae480418a2efe Author: Tony CHEMIT <chemit@codelutin.com> Date: Sun Jul 27 13:04:02 2014 +0200 fixes #3357: Remove deprecated Tapestry mojo commit 4c6a79c97731e0a8fab3de633597d45d8d7c921b Author: Tony CHEMIT <chemit@codelutin.com> Date: Sat Jul 26 19:34:54 2014 +0200 refs #3356 : add the generated csv file in the classpath commit c620165255300efd898a95f09bb8c4f4e393e5d3 Author: Tony CHEMIT <chemit@codelutin.com> Date: Sat Jul 26 17:36:25 2014 +0200 refs #3356 improve merge mojo + add mini doc commit 29266eb190010eaa383505dd2b6afc9d0e5fd59e Author: Tony CHEMIT <chemit@codelutin.com> Date: Sat Jul 26 16:54:09 2014 +0200 refs #3356 add new csv package with the 3 new mojos + deprecates csv generation in bundle mojo Summary of changes: i18n-maven-plugin/pom.xml | 5 + .../i18n/plugin/AbstractI18nGenerateMojo.java | 66 +++++ .../org/nuiton/i18n/plugin/AbstractI18nMojo.java | 111 +------- .../java/org/nuiton/i18n/plugin/GenerateMojo.java | 35 ++- .../java/org/nuiton/i18n/plugin/GetterMojo.java | 14 +- .../main/java/org/nuiton/i18n/plugin/I18nUtil.java | 41 +++ .../i18n/plugin/bundle/AbstractI18nBundleMojo.java | 5 +- .../plugin/bundle/AbstractMakeI18nBundleMojo.java | 284 --------------------- .../org/nuiton/i18n/plugin/bundle/BundleMojo.java | 245 +++++++++++++++++- .../plugin/bundle/CollectI18nArtifactsMojo.java | 4 + .../i18n/plugin/bundle/TapestryBundleMojo.java | 190 -------------- .../plugin/bundle/csv/AbstractCsvBundleMojo.java | 22 ++ .../plugin/bundle/csv/GenerateCsvBundleMojo.java | 255 ++++++++++++++++++ .../i18n/plugin/bundle/csv/I18nBundleModel.java | 44 ++++ .../i18n/plugin/bundle/csv/I18nBundleModelRow.java | 35 +++ .../plugin/bundle/csv/MergeBackCsvBundleMojo.java | 125 +++++++++ .../i18n/plugin/bundle/csv/SplitCsvBundleMojo.java | 124 +++++++++ .../i18n/plugin/parser/AbstractI18nParserMojo.java | 34 ++- i18n-maven-plugin/src/site/apt/index.apt | 6 + i18n-maven-plugin/src/site/apt/usages.apt | 30 +++ pom.xml | 6 + 21 files changed, 1070 insertions(+), 611 deletions(-) create mode 100644 i18n-maven-plugin/src/main/java/org/nuiton/i18n/plugin/AbstractI18nGenerateMojo.java create mode 100644 i18n-maven-plugin/src/main/java/org/nuiton/i18n/plugin/I18nUtil.java delete mode 100644 i18n-maven-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/AbstractMakeI18nBundleMojo.java delete mode 100644 i18n-maven-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/TapestryBundleMojo.java create mode 100644 i18n-maven-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/csv/AbstractCsvBundleMojo.java create mode 100644 i18n-maven-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/csv/GenerateCsvBundleMojo.java create mode 100644 i18n-maven-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/csv/I18nBundleModel.java create mode 100644 i18n-maven-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/csv/I18nBundleModelRow.java create mode 100644 i18n-maven-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/csv/MergeBackCsvBundleMojo.java create mode 100644 i18n-maven-plugin/src/main/java/org/nuiton/i18n/plugin/bundle/csv/SplitCsvBundleMojo.java -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.