The properties

All plugins need a property file, so that Opinio can get certain basic information about the plugin. This includes the plugin name (as displayed in the Opinio setup screen), author, version, build number, help file URL (not used yet). The property file should be in the same folder as the java and class files when building/compiling the plugin.

The name of the plugin property file should be MyPlugin.props

These lines must be included in the properties file:

        plugin.ResponseNotifierPlugin.name=My first plugin
        plugin.ResponseNotifierPlugin.author=Peter Pluginson
        plugin.ResponseNotifierPlugin.version=1.0
        plugin.ResponseNotifierPlugin.build=beta 1
        plugin.ResponseNotifierPlugin.docs=MyPluginHelp.html

        plugin.ResponseNotifierPlugin.depend.java=1.4
        plugin.ResponseNotifierPlugin.depend.Opinio.major=4
        plugin.ResponseNotifierPlugin.depend.Opinio.minor=0