Create a basic plugin

The following procedure describes the main steps to create a CVplugin on a Linux environment.

See Also
Plugin structure
  1. Go to your plugin directory:

    cd my_plugin

  2. Create the META-INF/ and lib/ subdirectories:

    mkdir META-INF lib

  3. Create a cvplugin.properties file under the META-INF/ subdirectory:

    touch META-INF/cvplugin.properties

  4. Copy your JAR component in the lib/ subdirectory:

    cp ~/my_component.jar lib/

  5. Zip your plugin:

    zip -r ../my_plugin.zip