Details
-
Bug
-
Status: Closed
-
Blocker
-
Resolution: Fixed
-
None
-
None
-
None
-
Platform Sprint 136
Description
The localization plugin does not fetch the latest 11.0 translations of the CMS (e.g. 4.0.2-SNAPSHOT). Instead it always fetches the 4.0.0 translations.
Steps to reproduce:
- Build the 11.0 branch of the archetype:
git clone git@code.onehippo.org:cms-community/hippo-project-archetype.git cd hippo-project-archetype git checkout release/4.0 mvn clean verify
- Compare the version number of the hippo-cms-l10n artifacts to the version of the cms API artifact:
find . -name hippo-cms-l10n* find . -name hippo-cms-api*
Expected:
./target/test-classes/projects/gettingstarted/project/gettingstarted/cms/target/cms/WEB-INF/lib/hippo-cms-l10n-4.0.2-SNAPSHOT-nl.jar ./target/test-classes/projects/gettingstarted/project/gettingstarted/cms/target/cms/WEB-INF/lib/hippo-cms-l10n-4.0.2-SNAPSHOT-de.jar ./target/test-classes/projects/gettingstarted/project/gettingstarted/cms/target/cms/WEB-INF/lib/hippo-cms-l10n-4.0.2-SNAPSHOT-fr.jar ./target/test-classes/projects/gettingstarted/project/gettingstarted/cms/target/cms/WEB-INF/lib/hippo-cms-l10n-4.0.2-SNAPSHOT-zh.jar
./target/test-classes/projects/gettingstarted/project/gettingstarted/cms/target/cms/WEB-INF/lib/hippo-cms-api-4.0.2-SNAPSHOT.jar
Actual:
./target/test-classes/projects/gettingstarted/project/gettingstarted/cms/target/cms/WEB-INF/lib/hippo-cms-l10n-4.0.0-nl.jar ./target/test-classes/projects/gettingstarted/project/gettingstarted/cms/target/cms/WEB-INF/lib/hippo-cms-l10n-4.0.0-de.jar ./target/test-classes/projects/gettingstarted/project/gettingstarted/cms/target/cms/WEB-INF/lib/hippo-cms-l10n-4.0.0-fr.jar ./target/test-classes/projects/gettingstarted/project/gettingstarted/cms/target/cms/WEB-INF/lib/hippo-cms-l10n-4.0.0-zh.jar
./target/test-classes/projects/gettingstarted/project/gettingstarted/cms/target/cms/WEB-INF/lib/hippo-cms-api-4.0.2-SNAPSHOT.jar
So the translation artifacts still have version 4.0.0 while the CMS is already at version 4.0.2-SNAPSHOT.
Consequently, none of the changes to the CMS translations after the 4.0.0 tag will be picked up until this issue is fixed. That's a blocker for the 11.0 GA release.