Content Tags module
Content management Bundled: DX Core
Edition | DX Core |
---|---|
License |
|
Issues |
|
Maven site |
|
Latest |
2.0.6 |
The Content Tags module makes content
tagging possible. The module contains UI classes to enable tagging on
content
apps and provides
tagfn
templating functions to search for tagged content.
Module structure
artifactID | |
---|---|
|
|
Provides the API and the
|
|
Installing with Maven
Bundled modules are automatically installed for you.
If the module is unbundled, add the following to your bundle including your project’s <dependencyManagement>
section and your webapp’s <dependencies>
section.
If the module is unbundled but the parent POM manages the version, add the following to your webapp’s <dependencies>
section.
<dependency>
<groupId>info.magnolia.contenttags</groupId>
<artifactId>magnolia-content-tags-ui</artifactId>
<version>2.0.6</version> (1)
</dependency>
1 | Should you need to specify the module version, do it using <version> . |
It is sufficient to add magnolia-content-tags-ui only to the POM file
of your webapp and let let Maven handle the dependency to
magnolia-content-tags-core .
|
<dependency>
<groupId>info.magnolia.contenttags</groupId>
<artifactId>magnolia-content-tags-core</artifactId>
<version>2.0.2</version> (1)
</dependency>
1 | Should you need to specify the module version, do it using <version> . |
Further reading
-
Get familiar with the
tagfn
templating functions.