Files
Spark/documentation/sample_plugin_repository.xml
Wolf Posdorfer 7becd91a8d the plugin repository can now be configure in default.properties
for a sample structure of how the plugin-repository must look like see
documentation/sample_plugin_repository.xml




git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@12484 b35dd754-fafc-0310-a699-88a17e54d16e
2011-06-15 06:37:12 +00:00

28 lines
1.2 KiB
XML

<plugins>
<plugin>
<name>Testplugin1</name>
<version>1.0</version>
<author>Some Guy</author>
<homePage>http://www.jivesoftware.com</homePage>
<email>someguy@somewebsite.com</email>
<description>Used for doing stuff</description>
<class>org.jivesoftware.spark.test.plugin.stuff</class>
<minSparkVersion>2.6.0</minSparkVersion>
<downloadURL>http://localhost/test.jar</downloadURL>
<changeLog>http://www.google.de/search?q=changelog</changeLog>
<readme>http://www.google.de/search?q=readme</readme>
</plugin>
<plugin>
<name>Other Plugin</name>
<version>1.0</version>
<author>Joe Mamma</author>
<homePage>http://www.jivesoftware.com</homePage>
<email>Joe@Mama.com</email>
<description>Adds some weird features you dont want</description>
<class>org.weird.feature.class.mainclass</class>
<minSparkVersion>2.6.0</minSparkVersion>
<downloadURL>http://localhost/test.jar</downloadURL>
<changeLog>http://www.google.de/search?q=changelog</changeLog>
<readme>http://www.google.de/search?q=readme</readme>
</plugin>
</plugins>