Details
Description
- Create a clean Maven environment (e.g. temporarily rename your ~/.m2 folder)
- Create 14.3.3 archetype project (https://documentation.bloomreach.com/14/trails/getting-started/creating-a-project.html)
- Build it with mvn clean verify
Expected: build successful
Exception: build fails with following error message:
[ERROR] Unresolveable build extension: Plugin org.onehippo.cms.l10n:hippo-cms-l10n-maven-plugin:14.2.2-CMS-13468 or one of its dependencies could not be resolved: Could not find artifact org.onehippo.cms.l10n:hippo-cms-l10n-maven-plugin:jar:14.2.2-CMS-13468 in hippo (https://maven.onehippo.com/maven2/) @
@
The bug seems to be in the 14.3.3 release pom (https://maven.onehippo.com/service/local/repositories/releases/content/org/onehippo/cms7/hippo-cms7-release/14.3.3/hippo-cms7-release-14.3.3.pom).
It contains:
<hippo.maven.plugin.l10n>14.2.2-CMS-13468</hippo.maven.plugin.l10n>
This should probably be:
<hippo.maven.plugin.l10n>${hippo.release.version}</hippo.maven.plugin.l10n>
A temporary workaround is to override the above property in the project root pom:
<hippo.maven.plugin.l10n>14.3.3</hippo.maven.plugin.l10n>