Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Code Block
xml
xml
<dependency>
    <groupId>com.cognifide.slice<slice-addon</groupId>
    <artifactId>slice-cq55</artifactId>
    <version>1.0.0</version>
</dependency>
<dependency>
    <groupId>com.cognifide.slice<slice-addon</groupId>
    <artifactId>slice-cq55-taglib</artifactId>
    <version>1.0.0</version>
</dependency>
Info
titleSlice CQ Addons

If you want to use Slice CQ Addons dedicated for other CQ version, just change artifactId value, e.g

...

. for CQ 5.6:

Code Block
xml
xml
<dependency>
    <groupId>com.cognifide.slice-addon</groupId>
    <artifactId>slice-cq56</artifactId>
    <version>1.0.0</version>
</dependency>
<dependency>
    <groupId>com.cognifide.slice-addon</groupId>
    <artifactId>slice-cq56-taglib</artifactId>
    <version>1.0.0</version>
</dependency>
Info

Depending on your project you might want to set the scope of the dependencies to provided.

...