Skip to end of metadata
Go to start of metadata

Overview

This page provides a quick overview of module development for experienced Magnolia developers.

Developers new to Magnolia should start with our Geolocation Module Tutorial.

An overview of Magnolia modules can be found at in our documentation on the Module Mechanism page.

Contents

Using a Maven Archetype

You can use Maven 2's archetype plugin to quickly get started with creating a module or project.

Use this command:

You will first be prompted to "Choose an archetype". (warning) Avoid maven-archetype-magnolia-webapp and maven-archetype-magnolia-module, as they are quite outdated. Choose any of the others, depending on what you're doing.

You will further be prompted for various properties, whose names should hopefully be obvious enough for you to figure what to enter. If not, try some random value, see the results and try again (wink) (Please vote for this maven-archetype-plugin enhancement !)

The Module archetype

The module archetype will generate a basic Magnolia module, including all necessary folders, a module descriptor and two classes:

The Forge Module archetype

The Forge module archetype is very similar, but will provide a pom.xml with sensible defaults for use for a project hosted on the Magnolia Forge.

The STK Theme archetype

The STK Theme archetype will produce a quickstart for an STK Theme.

The Project archetype

The Project archetype will produce a skeleton for a "project"; this will contain

  • a parent pom
  • a webapp, overlaying magnolia-empty-webapp, ready to host your custom configuration files.

If you want to add a module to an existing project, generating the module artifact from within your project should get you started quickly, as it will adapt the new artifact's parent pom to match your existing project !

The Magnolia Maven Archetypes if a Magnolia Forge project. Have a look at http://jira.magnolia-cms.com/browse/ARCH to see known problems or suggest new features.

Please try it out and tell us what you think !

More info about Maven archetypes:

Host your module at the Forge!

Hey, why not share your new module with the world and host it at the forge ?

Your Rating: Results: PatheticBadOKGoodOutstanding! 31 rates

  1. May 22, 2009

    Is there already an Archetype for Modules in Magnolia 4.01 or 4.1?

    1. Mar 17, 2011

      Sorry for the late reply, but yes, finally !
      (you can even choose the Magnolia version when generating(wink))

  2. May 02, 2011

    If you occur an

    error when running

    on your newly created module, here is the solution http://forums.atlassian.com/thread.jspa?threadID=34952&tstart=30.

  3. Jun 17, 2011

    Way cool beans!

    Love the new archetypes! Thank you Joerg and Greg!

    In case anyone is interested, you may also add the archetypes to your local archetype-catalog as an alternative to passing in the -DarchetypeCatalog=http://nexus.magnolia-cms.com/content/groups/public/ argument.

    To do so:

    1. Make sure you've run through the steps to setup Maven with Magnolia's Nexus Repositories - @see Maven Setup
    2. Under your ~/.m2 check to see if you already have an archetype-catalog.xml file. If not, create one.
    3. Open up archetype-catalog.xml, and add the magnolia archetypes you'd like to use, for instance:
      archetype-catalog.xml
    4. Save the file, open up a terminal, and run:
    5. You should see the magnolia archetypes in the list of available archetypes to choose from
    6. Enjoy!
    1. Jun 17, 2011

      True, but that'd mean maintaining that list (new archetypes, new versions, ...) - whereas our catalog is always up-to-date. (generated by Nexus).