Details
-
Task
-
Status: Closed
-
Top
-
Resolution: Fixed
-
None
-
None
-
None
-
Platform 192 - Messy HST 2, Platform 193 - HST Almost, Platform 194 - Features Done!
Description
Since the hst-api has moved to the shared lib, no single module is allowed to transitively pull in the hst-api, hence where needed, change
<dependency> <groupId>org.onehippo.cms7.hst</groupId> <artifactId>hst-api</artifactId> <version>${hippo.hst.version}</version> </dependency>
into
<dependency> <groupId>org.onehippo.cms7.hst</groupId> <artifactId>hst-api</artifactId> <version>${hippo.hst.version}</version> <scope>provided</scope> </dependency>