-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathplugin.xml
More file actions
28 lines (28 loc) · 790 Bytes
/
plugin.xml
File metadata and controls
28 lines (28 loc) · 790 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="id1"
point="org.eclipse.core.runtime.applications">
<application
cardinality="singleton-global"
thread="main"
visible="true">
<run
class="com.microsoft.java.lsif.core.internal.LanguageServerIndexer">
</run>
</application>
</extension>
<extension
id="product"
point="org.eclipse.core.runtime.products">
<product
application="com.microsoft.java.lsif.core.id1"
name="Java Language Server">
<property
name="appName"
value="Java Language Server">
</property>
</product>
</extension>
</plugin>