Packaging

The group processor class and all the properties files must be packaged in a JAR file before you can deploy it. To package it you must:

  1. Copy the files into a folder structure that matches:

    • The package name of your processor class

    • The Content Engine's package naming conventions

  2. Pack it in a JAR file

Group Processor Package Structure

For the example processor MyDummyGroupProcessor, you would need to create a JAR file with the following structure:

com
  +-escenic
  |  +-servlet
  |   +-default-config
  |     +-com
  |       +-escenic
  |         +-framework
  |           +-descriptor
  |           |  +-DummyGroupDescriptor.properties
  |           |  +-GroupDescriptorFactory.properties
  |           +-processor
  |              +-MyDummyGroupProcessor.properties
  +-mycompany
    +-group
      +-processor
        +-MyDummyGroupProcessor.class