forked from igniterealtime/openfire-xmldebugger-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
36 lines (33 loc) · 1.13 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Plugin configuration for the sessions debugger plugin.
-->
<plugin>
<class>org.jivesoftware.openfire.plugin.DebuggerPlugin</class>
<name>${project.name}</name>
<description>${project.description}</description>
<author>Ignite Realtime</author>
<version>${project.version}</version>
<date>2023-11-29</date>
<minServerVersion>4.8.0</minServerVersion>
<minJavaVersion>1.8</minJavaVersion>
<csrfProtectionEnabled>true</csrfProtectionEnabled>
<adminconsole>
<tab id="tab-server">
<sidebar id="sidebar-server-settings">
<item id="debugger-conf"
name="XML Debugger Properties"
url="debugger-conf.jsp"
description="Edit XML debugger plugin properties" />
</sidebar>
</tab>
<tab id="tab-session">
<sidebar id="sidebar-tools">
<item id="stanza-sender"
name="Raw XMPP sender"
url="stanza-sender.jsp"
description="Compose and send raw XMPP" />
</sidebar>
</tab>
</adminconsole>
</plugin>