Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c2e181c73fedd96a8898b3a39df767dc687feb49 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!--
    Copyright (c) 2003, 2014 IBM Corporation and others.

    This program and the accompanying materials
    are made available under the terms of the Eclipse Public License 2.0
    which accompanies this distribution, and is available at
    https://www.eclipse.org/legal/epl-2.0/

    SPDX-License-Identifier: EPL-2.0
   
    Contributors:
        IBM Corporation - initial API and implementation
 -->

<!-- =================================================================================== -->
<!-- SSH2 Plug-in Manifest 					                                             -->
<!-- =================================================================================== -->
<plugin>

<!-- =================================================================================== -->
<!-- Runtime Libraries                                                                   -->
<!-- =================================================================================== -->

<!-- =================================================================================== -->
<!-- Prerequisite Plug-ins                                                               -->
<!-- =================================================================================== -->

<!-- =================================================================================== -->
<!-- Extension Point: CVS connection method                                              -->
<!-- =================================================================================== -->
<extension id="ssh2" point="org.eclipse.team.cvs.core.connectionmethods">
	<adapter>
		<run class="org.eclipse.team.internal.ccvs.ssh2.CVSSSH2Method">
			<parameter name="trace" value="false"/>
		</run>
	</adapter>
</extension>

<extension id="pserverssh2" point="org.eclipse.team.cvs.core.connectionmethods">
	<adapter>
		<run class="org.eclipse.team.internal.ccvs.ssh2.PServerSSH2Method">
			<parameter name="trace" value="false"/>
		</run>
	</adapter>
</extension>
<extension
      point="org.eclipse.ui.trace.traceComponents">
   <component
         id="org.eclipse.team.cvs.ssh2.trace"
         label="%traceComponentLabel">
      <bundle
            consumed="false"
            name="org.eclipse.team.cvs.ssh2">
      </bundle>
   </component>
</extension>
</plugin>

Back to the top