-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
29 lines (25 loc) · 1.09 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- The plugin.dtd file is located in the OXYGEN_INSATALL_DIR/plugins directory -->
<!DOCTYPE plugin SYSTEM "../plugin.dtd">
<plugin
id="com.oxygenxml.dita.references"
name="DITA References View"
description="This side-view shows all outgoing references for the current opened DITA topic."
version="${project.nosnapshot.version}"
vendor="Syncro Soft"
class="com.oxygenxml.ditareferences.workspace.WorkspaceAccessPlugin"
classLoaderType="preferReferencedResources">
<runtime>
<library name="src/main/resources"/>
<library name="target/classes" />
<librariesFolder name="target/lib" />
<librariesFolder name="lib" />
</runtime>
<extension type="WorkspaceAccess"
class="com.oxygenxml.ditareferences.workspace.DITAReferencesWorkspaceAccessPluginExtension"/>
<view id="DITAReferencesView" initialSide="EAST" initialRow="1" initialState="docked">
<perspective id="xslt_debugger" initialState="hidden"/>
<perspective id="xquery_debugger" initialState="hidden"/>
<perspective id="database" initialState="hidden"/>
</view>
</plugin>