forked from angelozerr/angularjs-eclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
64 lines (62 loc) · 2.36 KB
/
plugin.xml
File metadata and controls
64 lines (62 loc) · 2.36 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
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!--
###############################################################################
# Copyright (c) 2013 Angelo Zerr and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# Angelo Zerr <angelo.zerr@gmail.com> - Initial API and implementation
###############################################################################
-->
<plugin>
<extension id="JSPAngularContentValidator" name="%JSP_Angular_Content_Validator.name" point="org.eclipse.wst.validation.validatorV2">
<validator
build="true"
class="org.eclipse.angularjs.jsp.core.validation.JSPAngularContentValidator"
manual="true"
version="1"
markerId="org.eclipse.jst.jsp.core.validationMarker"
sourceid="org.eclipse.jst.jsp.ui.internal.validation.markupvalidator, org.eclipse.angularjs.jsp.ui.validation.htmlsyntaxvalidator">
<include>
<rules>
<contentType id="org.eclipse.jst.jsp.core.jspsource"/>
<!-- needed until bug 181443 is implemented -->
<contentType id="org.eclipse.jst.jsp.core.jspfragmentsource"/>
<fileext
caseSensitive="false"
ext="jsp">
</fileext>
<fileext
caseSensitive="false"
ext="jspf">
</fileext>
<fileext
caseSensitive="false"
ext="jsf">
</fileext>
<fileext
caseSensitive="false"
ext="tag">
</fileext>
<fileext
caseSensitive="false"
ext="tagf">
</fileext>
<fileext
caseSensitive="false"
ext="jsv">
</fileext>
<fileext
caseSensitive="false"
ext="jtpl">
</fileext>
</rules>
</include>
<group id="org.eclipse.wst.sse.core.structuredModelGroup"/>
</validator>
</extension>
</plugin>