Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b60e930e3b8c50f0f9000a5b84704495aead5d24 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<!--
    Copyright (c) 2005, 2019 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
 -->

<plugin>
 <extension
         point="org.eclipse.debug.core.launchConfigurationTypes">
      <launchConfigurationType
            name="%Program.externalTools"
            delegate="org.eclipse.core.externaltools.internal.launchConfigurations.ProgramLaunchDelegate"
            category="org.eclipse.ui.externaltools"
            modes="run"
            id="org.eclipse.ui.externaltools.ProgramLaunchConfigurationType"
            allowOutputMerging="true">
      </launchConfigurationType>
      <launchConfigurationType
            name="%Program.externalTools"
            delegate="org.eclipse.core.externaltools.internal.launchConfigurations.ProgramLaunchDelegate"
            category="org.eclipse.ui.externaltools.builder"
            modes="run"
            id="org.eclipse.ui.externaltools.ProgramBuilderLaunchConfigurationType"
            allowOutputMerging="true">
      </launchConfigurationType>
   </extension>
   <extension
         id="org.eclipse.ui.externaltools.ExternalToolBuilder"
         name="%Builder.externalTools"
         point="org.eclipse.core.resources.builders">
     <builder
      	isConfigurable= "true">
         <run
               class="org.eclipse.core.externaltools.internal.model.ExternalToolBuilder">
         </run>
      </builder>
   </extension>   
</plugin>

Back to the top