Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: df017dc73cfbcc9f01a5cee90689e616d882b43d (plain) (blame)
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>

     <extension
         id="StaticWebNature"
         name="Static Web Properties"
         point="org.eclipse.core.resources.natures">
      <runtime>
         <run
               class="org.eclipse.wst.web.internal.operation.StaticWebNatureRuntime">
         </run>
      </runtime>
  </extension>
   <!--  <extension
         point="org.eclipse.wst.server.core.moduleFactories">
      <moduleFactory
            projects="true"
            class="org.eclipse.wst.web.internal.deployables.StaticWebDeployableFactory"
            id="org.eclipse.jst.j2ee.internal.web.deployables.static">
         <moduleType
               versions="1.0"
               types="web.static">
         </moduleType>
      </moduleFactory> -->
    
    <extension
         point="org.eclipse.wst.server.core.moduleArtifactAdapters">
       <moduleArtifactAdapter
            id="org.eclipse.jst.web.server.webstatic1"
            class="org.eclipse.wst.web.internal.deployables.StaticWebDeployableObjectAdapter">
         <enablement>
           <with variable="selection">
             <adapt type="org.eclipse.core.resources.IProject"/>
           </with>
         </enablement>
       </moduleArtifactAdapter>    
   </extension>
   <extension point="org.eclipse.core.runtime.adapters">
         <factory
             class="org.eclipse.wst.web.internal.deployables.StaticWebDeployableObjectAdapter"
             adaptableType="org.eclipse.core.resources.IProject">
            <adapter type="org.eclipse.wst.web.internal.deployables.IStaticWebModuleArtifact"/>
        </factory>    
   </extension> 
   
     <extension
         point="org.eclipse.wst.server.core.moduleFactories">
      <moduleFactory
            projects="true"
            class="org.eclipse.wst.web.internal.deployables.StaticWebDeployableFactory"
            id="org.eclipse.jst.j2ee.internal.web.deployables.static">
         <moduleType
               versions="1.2, 1.3, 1.4"
               types="web.static">
         </moduleType>
      </moduleFactory>
   </extension>
   <extension
         point="org.eclipse.wst.common.frameworks.ExtendableOperation">
      <!--<extendableOperation
            class="com.ibm.wtp.web.operations.RemoveServletOperation"
            id="com.ibm.wtp.web.operations.RemoveServletOperation">
      </extendableOperation>
      <extendableOperation
            class="com.ibm.wtp.web.operations.RemoveWebSecurityRoleOperation"
            id="com.ibm.wtp.web.operations.RemoveWebSecurityRoleOperation">
      </extendableOperation>-->
      <extendableOperation
            class="org.eclipse.jst.j2ee.internal.web.operations.AddServletOperation"
            id="org.eclipse.jst.j2ee.internal.web.operations.AddServletOperation">
      </extendableOperation>
   </extension>
</plugin>

Back to the top