The archetype properties are the same as in the Edition Archetype. See there.
The archetype should be run from the root folder of an edition. After
the generation is complete, the new folder named after the
artifactId
property should be renamed to tooling
(or what ever you
like).
Example:
- Edition given in base folder
herbert-saeculum
. - CD into it and run
mvn archetype:generate -DarchetypeCatalog=local
. - Result looks like:
saeculum-edition/ ├── EDITION-STUFF └── saeculum-edition ├── .mvn │ └── maven.config ├── pom.xml └── scripts ├── ant.sh ├── classpath.sh ├── query.sh ├── test.sh └── xslt.sh
- Rename the nested
saeculum-edition
folder totooling
, so:saeculum-edition/ ├── EDITION-STUFF └── tooling ├── .mvn │ └── maven.config ├── pom.xml └── scripts ├── ant.sh ├── classpath.sh ├── query.sh ├── test.sh └── xslt.sh