| | 63 | To create a working, skeleton Quattor configuration component, use maven to create one from the standard "archetype". Use the following command: |
| | 64 | {{{ |
| | 65 | mvn archetype:generate \ |
| | 66 | -DarchetypeGroupId=org.quattor.maven \ |
| | 67 | -DarchetypeArtifactId=component \ |
| | 68 | -DarchetypeVersion=1.0.0 \ |
| | 69 | -DarchetypeRepository=http://lapp-repo01.in2p3.fr:8081/nexus/content/repositories/releases/ \ |
| | 70 | -DgroupId=org.quattor.config.component \ |
| | 71 | -DartifactId=example |
| | 72 | }}} |
| | 73 | Use the standard groupId for the component if this will become part of the Quattor repository. Once generated, you can ensure that the component compiles with `mvn package`. You should then modify the perl module and pan language files as appropriate for the component that you are building. |
| | 74 | |