This repository has been archived by the owner on Aug 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathplugin.xml
76 lines (75 loc) · 2.55 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="app"
point="org.eclipse.core.runtime.applications">
<application
cardinality="singleton-global"
thread="main"
visible="true">
<run
class="collabode.Application">
</run>
</application>
</extension>
<extension
id="prod"
point="org.eclipse.core.runtime.products">
<product
application="collabode.etherpad.app"
name="Collabode Server">
<property
name="appName"
value="Collabode Server">
</property>
</product>
</extension>
<extension
point="org.eclipse.jdt.core.classpathContainerInitializer">
<classpathContainerInitializer
class="collabode.testing.TestSupportInitializer"
id="collabode.TEST_SUPPORT_CONTAINER">
</classpathContainerInitializer>
</extension>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
name="JUnit Restricted"
delegateDescription="The Eclipse JUnit Launcher with security restriction"
delegateName="Eclipse JUnit Launcher Restricted"
delegate="collabode.testing.JUnitRestrictedLaunchConfigurationDelegate"
modes="run, debug"
id="collabode.testing.launchconfig"
sourceLocatorId="org.eclipse.jdt.launching.sourceLocator.JavaSourceLookupDirector"
sourcePathComputerId="org.eclipse.jdt.launching.sourceLookup.javaSourcePathComputer"
migrationDelegate="collabode.testing.JUnitRestrictedMigrationDelegate">
</launchConfigurationType>
</extension>
<extension
point="org.eclipse.ui.views">
<category
id="collabode.views"
name="Collabode">
</category>
<view
category="collabode.views"
class="collabode.view.ServerView"
icon="src/static/img/collabode.gif"
id="collabode.view.ServerView"
name="Collabode Server">
</view>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="org.eclipse.jdt.ui.JavaPerspective">
<view
id="collabode.view.ServerView"
ratio="0.6"
relationship="right"
relative="org.eclipse.ui.views.ProblemView">
</view>
</perspectiveExtension>
</extension>
</plugin>