-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathplugin.xml
executable file
·46 lines (34 loc) · 1.85 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="ISO-8859-1"?>
<plugin name="hibiscus.server" version="2.11.0-nightly" class="de.willuhn.jameica.hbci.payment.Plugin"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://www.willuhn.de/schema/jameica-plugin-1.0.xsd">
<description>Hibiscus Payment-Server</description>
<url></url>
<homepage>https://www.willuhn.de/products/hibiscus-server</homepage>
<license>GPL - http://www.gnu.org/copyleft/gpl.html</license>
<requires jameica="2.10.0+">
<!-- Hibiscus selbst -->
<import plugin="hibiscus" version="2.10.0+"/>
<!-- Plattform-Erweiterungen -->
<import plugin="jameica.webadmin" version="2.8.0+"/>
<import plugin="jameica.xmlrpc" version="2.8.0+"/>
<import plugin="jameica.soap" version="2.8.0+"/>
<import plugin="jameica.sensors" version="2.8.0+"/>
<!-- Hibiscus-Connectoren -->
<import plugin="hibiscus.xmlrpc" version="2.8.0+"/>
<import plugin="hibiscus.soap" version="2.8.0+"/>
</requires>
<classfinder>
<include>hibiscus\.server\.jar</include>
<include>.*\.class</include>
</classfinder>
<services>
<service name="execute" depends="" autostart="true" class="de.willuhn.jameica.hbci.payment.rmi.ExecuteService" />
<service name="scheduler" depends="execute" autostart="true" class="de.willuhn.jameica.hbci.payment.rmi.SchedulerService" />
<service name="tantest" depends="" autostart="false" class="de.willuhn.jameica.hbci.payment.rmi.TANTestService" />
</services>
<messaging>
<consumer queue="hibiscus.passport.rdh.hbciversion" class="de.willuhn.jameica.hbci.payment.messaging.QueryHBCIVersionMessageConsumer" />
<consumer queue="hibiscus.sync.error" class="de.willuhn.jameica.hbci.payment.messaging.SynchronizeErrorMessageConsumer" />
</messaging>
</plugin>