Panel | ||
---|---|---|
| ||
The plugins file is used for defining the organisation database each custom project will run on. |
Attributes
Name | Description | Value |
---|---|---|
name | Your custom project's directory name. | A valid custom project directory name. |
description | The plugin description | Any string |
enabled | Defines if the plugin will be enabled or not. The default value is false. | true, false |
vendor | The plugin vendor. | Any string |
version | The plugin version. | Any string |
artifacts | A list of the plugin projects the plugin consists of. | A list of artifact ids as they where specified during the creation of the Java projects. |
organisations | A list of the organisation databases that the plugin will run on. | A list of <organisationid> elements containing the organisation(data source) name as defined on your Websphere/Wildfly server. |
Examples
Code Block |
---|
...
| |||||||||
| |||||||||
<pluginconfig>
<plugins>
<plugin>
<name>switch</name>
<description>Switch Provisioning Provider Plugin</description>
<enabled>true</enabled>
<vendor>CRM.COM</vendor>
<version>1.0.0</version>
<organisations>
<organisationid>SUBSCRIPTIONS_DB</organisationid>
<organisationid>ADMIN_DB</organisationid>
</organisations>
</plugin>
<plugin>
<name>kounta</name>
<description>Kounta Point Of Sale System Plugin</description>
<enabled>true</enabled>
<vendor>CRM.COM</vendor>
<version>1.0.0</version>
<organisations>
<organisationid>REWARDS_DB</organisationid>
<organisationid>ADMIN_DB</organisationid>
</organisations>
</plugin>
</plugins>
</pluginconfig> |
...