Maven keeps your user configuration and local repository under the ${user.home}/.m2/ directory.
For more details, see Configuring Maven.
Set up Magnolia repositories
For DX Core projects, or for community releases in maintenance mode, add the following repository to your project POM (or Maven settings profile), and follow the next sections to set up authentication.
Go to your profile. This is typically in the top corner with your username.
Select User Token from the menu.
Click Access user token.
This prompts you to log in again. Upon successful login, your user tokens are displayed.
If you have created a master password, encrypt your user token pass code:
mvn --encrypt-password ${userTokenPassCode}Copy
Finally, store the token in the format shown here.
<server><id>magnolia.enterprise.releases</id>(1)<!-- Token, not actual username / password --><username>{userTokenNameCode}</username>(2)<password>{userTokenPassCode}</password>(3)</server>Copy
1
The Magnolia enterprise Nexus repository.
The id must match the repository id in your project POM or 'magnolia-repositories' profile in maven settings.
2
Your name code user token from Nexus.
3
Your pass code user token from Nexus.
You may use your encrypted pass code token here.
Using Magnolia Maven archetypes
You need Maven to generate Magnolia project archetypes.
To do so, add the following to your Maven settings.
<profiles><profile><id>magnolia-repositories</id><activation><activeByDefault>true</activeByDefault></activation><repositories><!-- required for Magnolia Maven archetypes --><repository><id>magnolia.nexus.public</id><url>https://nexus.magnolia-cms.com/repository/public</url></repository></repositories></profile></profiles>Copy
The Maven Archetype Plugin allows you to create a Maven project from an
archetype – an existing template (a skeleton of files and directories).
The base plugin command is mvn archetype:generate.
For an overview of the parameters it accepts, see the archetype:generate page on the Apache Maven Project website.
For details on how the command works and how to use the interactive mode, see the Usage page on the site.
Option A
If you already know which Magnolia archetype you want to generate, the fastest way is to supply the archetype’s Maven coordinates (GAV) to the command line. For example:
If you omit the archetypeVersion, the plugin automatically picks the oldest version.
Option B
By default, the archetype plugin collects a list of all possible archetypes, including those found at Maven Central. The list can be very long and it may take some time to generate it. To reduce the list only to available Magnolia archetypes, use the plugin command with the following filter option:
If you need to interrupt the command, press CTRL + C.
Magnolia Maven archetypes
Magnolia provides the following archetypes:
The magnolia-project-archetype generates a Magnolia project with a parent POM and a Magnolia webapp.
The magnolia-module-archetype generates a Magnolia Maven module. For details, please refer to the Modules page.
The magnolia-blossom-module-archetype generates a Magnolia Maven module with support for the Blossom module.
The magnolia-cloud-project-archetype generates a Magnolia project with both a parent POM and both the dev and shared directories. See Creating and deploying custom cloud bundles for more details.
Before generating a project, the archetypes ask you to supply values for the following parameters:
Required parameters
Example value
Notes
Maven groupId
com.example
Typically reflects the name or domain of your company or projects.
Maven artifactId
custom-project
Project-specific identifier.
Maven version
1.0-SNAPSHOT
Project version. Typically, when creating a new project, use the value suggested by Maven, for example 1.0-SNAPSHOT.
package
com.example
Package name for Java classes reflecting both your company (or domain) and the specific project.
magnolia-bundle-version
6.2
Magnolia version to be used in your custom project.
project-name
Custom Project
Project name.
module-class-name
FoobarModule
Module name.
This is for module archetypes only.
blossom-version
3.2.1
The version of the Magnolia Blossom module.
This is for the blossom module archetype only.
Discontinued archetypes
As of version 1.2.5, the following archetypes have been discontinued. Older versions may still appear if you use the filter option.
The magnolia-forge-module-archetype, used to create a Magnolia module for the former Magnolia Forge (moved to GitHub: Magnolia Forge).
The magnolia-theme-archetype, used to create an STK (deprecated) theme module.
Which archetype version should I use?
Use the latest archetype release: 1.3.
Generated skeletons
A creation of a project typically results in the following skeleton, with a few more files created in src/main/webapp. For details, see Creating a custom webapp with Maven.
On the other hand, if you create a module, the skeleton will have a simpler structure (no multi-module Maven reactor), with a pre-generated Magnolia module descriptor and Java module class. See also Module structure.