Developer Jahia 8 Jahia 7.3 Jahia 8.1 Jahia 8.2

How should the bundles be named in Jahia?

Question

How should the bundles be named in Jahia?

Answer

Different information can be considered as the name of a bundle, all defined in the file pom.xml:

  • A human-readable name (Name): name
    • Any character is accepted
  • A technical name (Symbolic name): artifactId
    • Without space. We advise using lower case letters and the character - to separate each word.

Here is an example:

    <artifactId>augmented-search</artifactId>
    <packaging>bundle</packaging>
    <name>Augmented Search</name>
    <description>This module provides a GraphQl augmented search API using Elasticsearch</description>