-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
36 lines (34 loc) · 1.04 KB
/
plugin.xml
File metadata and controls
36 lines (34 loc) · 1.04 KB
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"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="application"
point="org.eclipse.core.runtime.applications">
<application id="ReduceCognitiveComplexity.application">
<run
class="neo.reducecognitivecomplexity.app.Application">
</run>
</application>
</extension>
<extension
id="applyCodeExtractions"
point="org.eclipse.core.runtime.applications">
<application id="ReduceCognitiveComplexity.applyCodeExtractions">
<run
class="neo.reducecognitivecomplexity.app.ApplyCodeExtractions">
</run>
</application>
</extension>
<extension
id="product"
point="org.eclipse.core.runtime.products">
<product
application="ReduceCognitiveComplexity.application"
name="ReduceCognitiveComplexityProduct">
<property
name="appName"
value="ReduceCognitiveComplexityProduct">
</property>
</product>
</extension>
</plugin>