forked from eclipse-tracecompass/org.eclipse.tracecompass
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
29 lines (29 loc) · 935 Bytes
/
plugin.xml
File metadata and controls
29 lines (29 loc) · 935 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
29
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.linuxtools.tmf.analysis.xml.core.files">
<xmlfile
file="test_xml_files/test_builtin.xml">
</xmlfile>
</extension>
<extension
point="org.eclipse.tracecompass.tmf.analysis.xml.core.xsd">
<xsdfile
file="test_xml_files/extension.xsd">
</xsdfile>
<schemaParser
class="org.eclipse.tracecompass.tmf.analysis.xml.core.tests.stubs.XmlSchemaParserStub">
</schemaParser>
</extension>
<!-- Define tracing nature here to be able to use it in tests -->
<extension
id="org.eclipse.linuxtools.tmf.project.nature"
point="org.eclipse.core.resources.natures">
<runtime>
<run
class="org.eclipse.tracecompass.tmf.core.TmfProjectNature">
</run>
</runtime>
</extension>
</plugin>