Changes between Version 19 and Version 20 of Obsolete/Development/UsefulLinks


Ignore:
Timestamp:
Oct 4, 2010, 8:53:48 AM (15 years ago)
Author:
/C=FR/O=CNRS/OU=UMR8607/CN=Charles Loomis/emailAddress=loomis@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Obsolete/Development/UsefulLinks

    v19 v20  
    6161* [wiki:Web/QuattorBuildFramework How to write NCM components]
    6262
     63To create a working, skeleton Quattor configuration component, use maven to create one from the standard "archetype".  Use the following command:
     64{{{
     65mvn 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}}}
     73Use 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
    6375== Pan language ==
    6476* [wiki:Doc/panc pan documentation]