Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For a full list of plugins file attributes, go to Plugins File Documentation Plugin Descriptor File.


Info
titlePlugin descriptor

Note that the artifact ids defined in a plugin should match the name of the Java projects - the artifact ids specified when the Java projects were created in the steps above.



Code Block
languagexml
titleplugins.xml
collapsetrue
<pluginconfig>
	<plugins>
		<plugin>
			<name>example-plugin</name>
			<description>Example plugin for getting started</description>
			<enabled>true</enabled>
			<vendor>CRM.COM</vendor>
			<version>1.0.0</version>
	        <artifacts>
		        <artifactid>example-ejb-plugin</artifactid>
		        <artifactid>example-web-plugin</artifactid>
	        </artifacts>
			<organisations>
				<organisationid>SUBSCRIPTIONS_DB</organisationid>
				<organisationid>ADMIN_DB</organisationid>
			</organisations>
		</plugin>
	</plugins>
</pluginconfig>

...