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: a3959a02cd7f183e66c92fc33f13d0d5f7e13799 (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
<?xml version="1.0" encoding="UTF-8"?>
<!-- 
/*******************************************************************************
 * Copyright (c) 2002-2005 IBM Corporation 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:
 *   IBM - Initial API and implementation
 *******************************************************************************/
--> 

<plugin
   id="org.eclipse.wst.wsi"
   name="%_PLUGIN_NAME"
   version="1.0"
   provider-name = "%_PROVIDER_NAME"
   class="org.eclipse.wst.wsi.internal.WSITestToolsPlugin">

   <runtime>
      <library name="wsi-test-tools.jar">
         <export name="*"/>
      </library>
     </runtime>
   
   <requires>
      <import plugin="org.eclipse.core.runtime.compatibility"/>
      <import plugin="org.eclipse.ui.ide"/>
      <import plugin="org.eclipse.ui.views"/>
      <import plugin="org.eclipse.ui.workbench.texteditor"/>
      <import plugin="org.eclipse.ui.editors"/>
      <import plugin="org.eclipse.core.resources"/>
      <import plugin="com.ibm.etools.validation.xmltools"/>
      <import plugin="org.uddi4j"/>
      <import plugin="com.ibm.etools.webservice.ui"/>
      <import plugin="com.ibm.env"/>
      <import plugin="com.ibm.env.core"/>
      <import plugin ="org.eclipse.ui"/>
   </requires>
  
</plugin>

Back to the top