mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-03-28 14:56:28 +01:00
Fixed "The value for X attribute is not externalized" warning
Change-Id: Ib2f0d85a0428a1f59cc7ccab6ebb8fd91ffa2a41 Signed-off-by: Torbjörn Svensson <azoff@svenskalinuxforeningen.se>
This commit is contained in:
parent
5779b04e6b
commit
f6016c5e0b
85 changed files with 460 additions and 59 deletions
|
@ -1,10 +1,10 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: GCC support for CDT Build Core
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.build.gcc.core;singleton:=true
|
||||
Bundle-Version: 1.1.0.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.build.gcc.core.internal.Activator
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
org.eclipse.core.resources;bundle-version="3.10.0",
|
||||
org.eclipse.cdt.core;bundle-version="5.12.0",
|
||||
|
@ -14,3 +14,4 @@ Bundle-ActivationPolicy: lazy
|
|||
Export-Package: org.eclipse.cdt.build.gcc.core,
|
||||
org.eclipse.cdt.build.gcc.core.internal;x-internal:=true
|
||||
Automatic-Module-Name: org.eclipse.cdt.build.gcc.core
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -3,5 +3,6 @@ output.. = bin/
|
|||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
plugin.xml,\
|
||||
plugin.properties,\
|
||||
about.html
|
||||
src.includes = about.html
|
||||
|
|
14
build/org.eclipse.cdt.build.gcc.core/plugin.properties
Normal file
14
build/org.eclipse.cdt.build.gcc.core/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = GCC support for CDT Build Core
|
||||
providerName = Eclipse CDT
|
|
@ -1,10 +1,10 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: GCC ToolChain Support UI
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.build.gcc.ui;singleton:=true
|
||||
Bundle-Version: 1.1.0.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.build.gcc.ui.internal.Activator
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.core.runtime,
|
||||
org.eclipse.cdt.ui;bundle-version="6.3.0",
|
||||
|
@ -14,3 +14,4 @@ Bundle-RequiredExecutionEnvironment: JavaSE-11
|
|||
Bundle-ActivationPolicy: lazy
|
||||
Automatic-Module-Name: org.eclipse.cdt.build.gcc.ui
|
||||
Export-Package: org.eclipse.cdt.build.gcc.ui.internal;x-internal:=true
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -3,6 +3,7 @@ output.. = bin/
|
|||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
plugin.xml,\
|
||||
plugin.properties,\
|
||||
about.html,\
|
||||
cdt_logo_icon32.png,\
|
||||
about.properties,\
|
||||
|
|
14
build/org.eclipse.cdt.build.gcc.ui/plugin.properties
Normal file
14
build/org.eclipse.cdt.build.gcc.ui/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = GCC ToolChain Support UI
|
||||
providerName = Eclipse CDT
|
|
@ -1,12 +1,13 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Tests
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.cmake.ui.tests
|
||||
Bundle-Version: 1.0.0.qualifier
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Require-Bundle: org.eclipse.swtbot.go;bundle-version="2.7.0",
|
||||
org.eclipse.cdt.core;bundle-version="6.4.0",
|
||||
org.eclipse.core.resources;bundle-version="3.12.0",
|
||||
org.eclipse.cdt.cmake.core;bundle-version="1.2.0"
|
||||
Automatic-Module-Name: org.eclipse.cdt.cmake.ui.tests
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -2,6 +2,7 @@ source.. = src/
|
|||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
plugin.properties,\
|
||||
about.html,\
|
||||
swtbot-test-plugin.properties
|
||||
src.includes = about.html
|
||||
|
|
14
build/org.eclipse.cdt.cmake.ui.tests/plugin.properties
Normal file
14
build/org.eclipse.cdt.cmake.ui.tests/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = Tests
|
||||
providerName = Eclipse CDT
|
|
@ -1,10 +1,10 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: CDT CMake UI
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.cmake.ui;singleton:=true
|
||||
Bundle-Version: 1.3.0.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.cmake.ui.internal.Activator
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
org.eclipse.core.resources;bundle-version="3.11.0",
|
||||
org.eclipse.ui,
|
||||
|
|
|
@ -9,4 +9,7 @@
|
|||
# SPDX-License-Identifier: EPL-2.0
|
||||
###############################################################################
|
||||
|
||||
pluginName = CDT CMake UI
|
||||
providerName = Eclipse CDT
|
||||
|
||||
cmake.preferences.name = CMake
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Make Core Tests Plug-in
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.make.core.tests;singleton:=true
|
||||
Bundle-Version: 7.0.0.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.make.core.tests.MakeTestsPlugin
|
||||
|
@ -13,7 +13,8 @@ Require-Bundle: org.eclipse.core.runtime,
|
|||
org.eclipse.core.resources,
|
||||
org.eclipse.cdt.core.tests
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Bundle-Vendor: Eclipse.org
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Import-Package: org.eclipse.core.filesystem
|
||||
Automatic-Module-Name: org.eclipse.cdt.make.core.tests
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -15,5 +15,6 @@ source.. = src/
|
|||
output.. = bin/
|
||||
bin.includes = .,\
|
||||
META-INF/,\
|
||||
plugin.properties,\
|
||||
data/
|
||||
src.includes = about.html
|
||||
|
|
14
build/org.eclipse.cdt.make.core.tests/plugin.properties
Normal file
14
build/org.eclipse.cdt.make.core.tests/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = Make Core Tests Plug-in
|
||||
providerName = Eclipse.org
|
|
@ -1,6 +1,6 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: org.eclipse.cdt.make.ui.tests
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.make.ui.tests;singleton:=true
|
||||
Bundle-Version: 1.0.0.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.make.ui.tests.MakeUITestsPlugin
|
||||
|
@ -11,5 +11,6 @@ Require-Bundle: org.eclipse.ui,
|
|||
org.eclipse.cdt.core.tests
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Bundle-Vendor: Eclipse.org
|
||||
Bundle-Vendor: %providerName
|
||||
Automatic-Module-Name: org.eclipse.cdt.make.ui.tests
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -2,5 +2,6 @@ source.. = src/
|
|||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
plugin.properties,\
|
||||
about.html
|
||||
src.includes = about.html
|
||||
|
|
14
build/org.eclipse.cdt.make.ui.tests/plugin.properties
Normal file
14
build/org.eclipse.cdt.make.ui.tests/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = org.eclipse.cdt.make.ui.tests
|
||||
providerName = Eclipse.org
|
|
@ -1,10 +1,10 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Tests
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.managedbuilder.core.tests; singleton:=true
|
||||
Bundle-Version: 8.2.100.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.managedbuilder.testplugin.CTestPlugin
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Localization: plugin
|
||||
Export-Package: org.eclipse.cdt.managedbuilder.core.tests,
|
||||
org.eclipse.cdt.managedbuilder.language.settings.providers.tests,
|
||||
|
|
|
@ -12,4 +12,8 @@
|
|||
# QNX Software Systems - initial API and implementation
|
||||
# IBM Corporation
|
||||
###############################################################################
|
||||
|
||||
pluginName = Tests
|
||||
providerName = Eclipse CDT
|
||||
|
||||
GNUMakeBuilder.name=Gnu Make Builder
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Managed Build UI Tests Plug-in
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.managedbuilder.ui.tests; singleton:=true
|
||||
Bundle-Version: 8.2.1.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.managedbuilder.ui.tests.testplugin.TestsPlugin
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.core.runtime,
|
||||
|
|
|
@ -15,6 +15,7 @@ source.. = src/
|
|||
output.. = bin/
|
||||
bin.includes = plugin.xml,\
|
||||
.,\
|
||||
plugin.properties,\
|
||||
about.html,\
|
||||
META-INF/
|
||||
src.includes = about.html
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = Managed Build UI Tests Plug-in
|
||||
providerName = Eclipse CDT
|
|
@ -1,8 +1,8 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Tests
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.meson.ui.tests
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Version: 1.0.1.qualifier
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Require-Bundle: org.eclipse.cdt.meson.core;bundle-version="1.0.0",
|
||||
|
@ -23,3 +23,4 @@ Require-Bundle: org.eclipse.cdt.meson.core;bundle-version="1.0.0",
|
|||
org.eclipse.ui.views.properties.tabbed;bundle-version="3.8.100"
|
||||
Import-Package: org.assertj.core.api;version="1.7.1"
|
||||
Automatic-Module-Name: org.eclipse.cdt.meson.ui.tests
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
plugin.properties,\
|
||||
.
|
||||
src.includes = about.html
|
||||
|
|
14
build/org.eclipse.cdt.meson.ui.tests/plugin.properties
Normal file
14
build/org.eclipse.cdt.meson.ui.tests/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = Tests
|
||||
providerName = Eclipse CDT
|
|
@ -1,10 +1,10 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Control Flow Graph
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.codan.ui.cfgview;singleton:=true
|
||||
Bundle-Version: 3.2.0.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.codan.ui.cfgview.ControlFlowGraphPlugin
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.core.runtime,
|
||||
org.eclipse.cdt.codan.core;bundle-version="1.0.0",
|
||||
|
@ -18,3 +18,4 @@ Bundle-ActivationPolicy: lazy
|
|||
Export-Package: org.eclipse.cdt.codan.ui.cfgview;x-internal:=true,
|
||||
org.eclipse.cdt.codan.ui.cfgview.views;x-internal:=true
|
||||
Automatic-Module-Name: org.eclipse.cdt.codan.ui.cfgview
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -17,6 +17,7 @@ output.. = bin/
|
|||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
plugin.xml,\
|
||||
plugin.properties,\
|
||||
about.html,\
|
||||
icons/
|
||||
src.includes = about.html
|
||||
|
|
14
codan/org.eclipse.cdt.codan.ui.cfgview/plugin.properties
Normal file
14
codan/org.eclipse.cdt.codan.ui.cfgview/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = Control Flow Graph
|
||||
providerName = Eclipse CDT
|
|
@ -1,6 +1,6 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: org.eclipse.cdt.core.tests
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.core.tests; singleton:=true
|
||||
Bundle-Version: 5.4.0.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.core.testplugin.CTestPlugin
|
||||
|
@ -44,6 +44,7 @@ Require-Bundle: org.eclipse.core.resources,
|
|||
org.eclipse.ltk.core.refactoring;bundle-version="3.4.0",
|
||||
org.hamcrest
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Automatic-Module-Name: org.eclipse.cdt.core.tests
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
# IBM Corporation - initial API and implementation
|
||||
###############################################################################
|
||||
bin.includes = plugin.xml,\
|
||||
plugin.properties,\
|
||||
about.html,\
|
||||
.,\
|
||||
test.xml,\
|
||||
|
|
14
core/org.eclipse.cdt.core.tests/plugin.properties
Normal file
14
core/org.eclipse.cdt.core.tests/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = org.eclipse.cdt.core.tests
|
||||
providerName = Eclipse CDT
|
|
@ -1,6 +1,6 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: org.eclipse.cdt.ui.tests
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.ui.tests; singleton:=true
|
||||
Bundle-Version: 5.5.300.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.ui.testplugin.CTestPlugin
|
||||
|
@ -42,6 +42,6 @@ Require-Bundle: org.eclipse.jface.text,
|
|||
org.mockito,
|
||||
org.hamcrest
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Automatic-Module-Name: org.eclipse.cdt.ui.tests
|
||||
|
|
|
@ -11,6 +11,10 @@
|
|||
# Contributors:
|
||||
# Sergey Prigogin (Google) - initial implementation
|
||||
###############################################################################
|
||||
|
||||
pluginName = org.eclipse.cdt.ui.tests
|
||||
providerName = Eclipse CDT
|
||||
|
||||
category.CodeReduction=C++ Code Reduction
|
||||
command.RemoveFunctionBodies.name=Remove Function Bodies
|
||||
command.RemoveFunctionBodies.label=Remove &Function Bodies
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Launch over Serial Core Plugin
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.launch.serial.core;singleton:=true
|
||||
Bundle-Version: 1.1.0.qualifier
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Require-Bundle: org.eclipse.core.runtime;bundle-version="3.13.0",
|
||||
org.eclipse.debug.core;bundle-version="3.11.0",
|
||||
|
@ -15,3 +15,4 @@ Export-Package: org.eclipse.cdt.launch.serial
|
|||
Bundle-Activator: org.eclipse.cdt.launch.serial.internal.Activator
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Automatic-Module-Name: org.eclipse.cdt.launch.serial.core
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -3,5 +3,6 @@ output.. = bin/
|
|||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
plugin.xml,\
|
||||
plugin.properties,\
|
||||
about.html
|
||||
src.includes = about.html
|
||||
|
|
14
cross/org.eclipse.cdt.launch.serial.core/plugin.properties
Normal file
14
cross/org.eclipse.cdt.launch.serial.core/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = Launch over Serial Core Plugin
|
||||
providerName = Eclipse CDT
|
|
@ -1,8 +1,8 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Ui
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.launch.serial.ui;singleton:=true
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Version: 1.1.0.qualifier
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Require-Bundle: org.eclipse.core.runtime;bundle-version="3.13.0",
|
||||
|
@ -16,3 +16,4 @@ Require-Bundle: org.eclipse.core.runtime;bundle-version="3.13.0",
|
|||
Bundle-Activator: org.eclipse.cdt.launch.serial.ui.internal.Activator
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Automatic-Module-Name: org.eclipse.cdt.launch.serial.ui
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -4,6 +4,7 @@ bin.includes = META-INF/,\
|
|||
.,\
|
||||
plugin.xml,\
|
||||
icons/,\
|
||||
plugin.properties,\
|
||||
about.html,\
|
||||
cdt_logo_icon32.png,\
|
||||
about.properties,\
|
||||
|
|
14
cross/org.eclipse.cdt.launch.serial.ui/plugin.properties
Normal file
14
cross/org.eclipse.cdt.launch.serial.ui/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = Ui
|
||||
providerName = Eclipse CDT
|
|
@ -1,11 +1,11 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: DSF-GDB test fragment
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.dsf.gdb.multicorevisualizer.ui.tests;singleton:=true
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Version: 1.0.0.qualifier
|
||||
Fragment-Host: org.eclipse.cdt.dsf.gdb.multicorevisualizer.ui
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Require-Bundle: org.junit
|
||||
Automatic-Module-Name: org.eclipse.cdt.dsf.gdb.multicorevisualizer.ui.tests
|
||||
|
||||
Bundle-Localization: fragment
|
||||
|
|
|
@ -15,5 +15,6 @@ source.. = src/
|
|||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
fragment.properties,\
|
||||
about.html
|
||||
src.includes = about.html
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = DSF-GDB test fragment
|
||||
providerName = Eclipse CDT
|
|
@ -1,10 +1,11 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: DSF-GDB test fragment
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.dsf.gdb.tests;singleton:=true
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Version: 1.0.0.qualifier
|
||||
Fragment-Host: org.eclipse.cdt.dsf.gdb
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Require-Bundle: org.junit;bundle-version="4.8.1"
|
||||
Automatic-Module-Name: org.eclipse.cdt.dsf.gdb.tests
|
||||
Bundle-Localization: fragment
|
||||
|
|
|
@ -15,5 +15,6 @@ source.. = src/
|
|||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
fragment.properties,\
|
||||
about.html
|
||||
src.includes = about.html
|
||||
|
|
14
dsf-gdb/org.eclipse.cdt.dsf.gdb.tests/fragment.properties
Normal file
14
dsf-gdb/org.eclipse.cdt.dsf.gdb.tests/fragment.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = DSF-GDB test fragment
|
||||
providerName = Eclipse CDT
|
|
@ -1,6 +1,6 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: GDB DSF Debugger Extension Example
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.examples.dsf.gdb;singleton:=true
|
||||
Bundle-Version: 1.1.100.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.examples.dsf.gdb.GDBExamplePlugin
|
||||
|
@ -20,7 +20,7 @@ Require-Bundle: org.eclipse.ui,
|
|||
org.eclipse.tm.terminal.control
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Export-Package: org.eclipse.cdt.examples.dsf.gdb;x-internal:=true,
|
||||
org.eclipse.cdt.examples.dsf.gdb.launch;x-internal:=true,
|
||||
org.eclipse.cdt.examples.dsf.gdb.service;x-internal:=true,
|
||||
|
@ -28,3 +28,4 @@ Export-Package: org.eclipse.cdt.examples.dsf.gdb;x-internal:=true,
|
|||
org.eclipse.cdt.examples.dsf.gdb.service.command.commands;x-internal:=true,
|
||||
org.eclipse.cdt.examples.dsf.gdb.viewmodel;x-internal:=true
|
||||
Automatic-Module-Name: org.eclipse.cdt.examples.dsf.gdb
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -2,5 +2,6 @@ source.. = src/
|
|||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
plugin.properties,\
|
||||
plugin.xml
|
||||
src.includes = about.html
|
||||
|
|
14
dsf-gdb/org.eclipse.cdt.examples.dsf.gdb/plugin.properties
Normal file
14
dsf-gdb/org.eclipse.cdt.examples.dsf.gdb/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = GDB DSF Debugger Extension Example
|
||||
providerName = Eclipse CDT
|
|
@ -1,10 +1,10 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: GDB/MI reference application tests
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.tests.dsf.gdb;singleton:=true
|
||||
Bundle-Version: 2.3.100.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.tests.dsf.gdb.launching.TestsPlugin
|
||||
Bundle-Vendor: Ericsson
|
||||
Bundle-Vendor: %providerName
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
org.eclipse.cdt.dsf,
|
||||
org.eclipse.cdt.core,
|
||||
|
@ -27,3 +27,4 @@ Export-Package: org.eclipse.cdt.dsf.mi.service;x-internal:=true,
|
|||
org.eclipse.cdt.tests.dsf.gdb.tests;x-internal:=true,
|
||||
org.eclipse.cdt.tests.dsf.gdb.tests.nonstop;x-internal:=true
|
||||
Automatic-Module-Name: org.eclipse.cdt.tests.dsf.gdb
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -17,6 +17,7 @@ bin.includes = plugin.xml,\
|
|||
META-INF/,\
|
||||
.,\
|
||||
data/,\
|
||||
plugin.properties,\
|
||||
about.html
|
||||
source.. = src/
|
||||
src.includes = about.html
|
||||
|
|
14
dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/plugin.properties
Normal file
14
dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = GDB/MI reference application tests
|
||||
providerName = Ericsson
|
|
@ -1,6 +1,6 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: GDB Hardware Debugging Tests
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.debug.gdbjtag.core.tests;singleton:=true
|
||||
Bundle-Version: 1.0.200.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.debug.gdbjtag.core.tests.Activator
|
||||
|
@ -14,6 +14,7 @@ Require-Bundle: org.eclipse.core.runtime,
|
|||
org.eclipse.cdt.launch,
|
||||
org.eclipse.debug.core
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Automatic-Module-Name: org.eclipse.cdt.debug.gdbjtag.core.tests
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -3,5 +3,6 @@ output.. = bin/
|
|||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
data/,\
|
||||
plugin.properties,\
|
||||
about.html
|
||||
src.includes = about.html
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = GDB Hardware Debugging Tests
|
||||
providerName = Eclipse CDT
|
|
@ -1,6 +1,6 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Launch Bar Core Tests
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.launchbar.core.tests;singleton:=true
|
||||
Bundle-Version: 1.0.100.qualifier
|
||||
Fragment-Host: org.eclipse.launchbar.core;bundle-version="1.0.0"
|
||||
|
@ -8,3 +8,4 @@ Bundle-RequiredExecutionEnvironment: JavaSE-11
|
|||
Require-Bundle: org.junit;bundle-version="4.12.0",
|
||||
org.mockito;bundle-version="2.23.0"
|
||||
Automatic-Module-Name: org.eclipse.launchbar.core.tests
|
||||
Bundle-Localization: fragment
|
||||
|
|
|
@ -3,4 +3,5 @@ output.. = bin/
|
|||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
fragment.xml,\
|
||||
fragment.properties,\
|
||||
about.html
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = Launch Bar Core Tests
|
|
@ -1,10 +1,10 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: LaunchBar Core
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.launchbar.core;singleton:=true
|
||||
Bundle-Version: 2.4.0.qualifier
|
||||
Bundle-Activator: org.eclipse.launchbar.core.internal.Activator
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
org.eclipse.debug.core,
|
||||
org.eclipse.core.expressions
|
||||
|
@ -15,3 +15,4 @@ Export-Package: org.eclipse.launchbar.core,
|
|||
org.eclipse.launchbar.core.target,
|
||||
org.eclipse.launchbar.core.target.launch
|
||||
Automatic-Module-Name: org.eclipse.launchbar.core
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -3,5 +3,6 @@ output.. = bin/
|
|||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
plugin.xml,\
|
||||
plugin.properties,\
|
||||
about.html,\
|
||||
schema/
|
||||
|
|
14
launchbar/org.eclipse.launchbar.core/plugin.properties
Normal file
14
launchbar/org.eclipse.launchbar.core/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = LaunchBar Core
|
||||
providerName = Eclipse CDT
|
|
@ -1,6 +1,6 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: LaunchBar Remote Core
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.launchbar.remote.core;singleton:=true
|
||||
Bundle-Version: 1.1.0.qualifier
|
||||
Bundle-Activator: org.eclipse.launchbar.remote.core.internal.Activator
|
||||
|
@ -13,3 +13,4 @@ Bundle-ActivationPolicy: lazy
|
|||
Export-Package: org.eclipse.launchbar.remote.core,
|
||||
org.eclipse.launchbar.remote.core.internal;x-friends:="org.eclipse.launchbar.remote.ui"
|
||||
Automatic-Module-Name: org.eclipse.launchbar.remote.core
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -2,5 +2,6 @@ source.. = src/
|
|||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
plugin.properties,\
|
||||
about.html,\
|
||||
plugin.xml
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = LaunchBar Remote Core
|
|
@ -1,10 +1,10 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Remote Launch Target UI
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.launchbar.remote.ui;singleton:=true
|
||||
Bundle-Version: 1.1.0.qualifier
|
||||
Bundle-Activator: org.eclipse.launchbar.remote.ui.internal.Activator
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.core.runtime,
|
||||
org.eclipse.remote.core;bundle-version="2.0.0",
|
||||
|
@ -16,3 +16,4 @@ Bundle-RequiredExecutionEnvironment: JavaSE-11
|
|||
Bundle-ActivationPolicy: lazy
|
||||
Export-Package: org.eclipse.launchbar.remote.ui
|
||||
Automatic-Module-Name: org.eclipse.launchbar.remote.ui
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -2,6 +2,7 @@ source.. = src/
|
|||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
plugin.properties,\
|
||||
about.html,\
|
||||
about.ini,\
|
||||
about.mappings,\
|
||||
|
|
14
launchbar/org.eclipse.launchbar.remote.ui/plugin.properties
Normal file
14
launchbar/org.eclipse.launchbar.remote.ui/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = Remote Launch Target UI
|
||||
providerName = Eclipse CDT
|
|
@ -1,10 +1,10 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Launch Bar UI Controls
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.launchbar.ui.controls;singleton:=true
|
||||
Bundle-Version: 1.1.0.qualifier
|
||||
Bundle-Activator: org.eclipse.launchbar.ui.controls.internal.Activator
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Require-Bundle: org.eclipse.osgi.services;bundle-version="3.5.0",
|
||||
org.eclipse.core.runtime,
|
||||
org.eclipse.ui,
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
pluginName = Launch Bar UI Controls
|
||||
providerName = Eclipse CDT
|
||||
|
||||
launchToolBar.label = LaunchBar
|
||||
targetsView.name = Launch Targets
|
||||
targetsContent.name = Launch Targets
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Launch Bar UI Tests
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.launchbar.ui.tests
|
||||
Bundle-Version: 1.0.100.qualifier
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.core.runtime,
|
||||
org.junit;bundle-version="4.12.0",
|
||||
|
@ -14,3 +14,4 @@ Bundle-ActivationPolicy: lazy
|
|||
Import-Package: org.eclipse.launchbar.ui.controls.internal
|
||||
Bundle-Activator: org.eclipse.launchbar.ui.tests.internal.Activator
|
||||
Automatic-Module-Name: org.eclipse.launchbar.ui.tests
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -2,4 +2,5 @@ source.. = src/
|
|||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
plugin.properties,\
|
||||
about.html
|
||||
|
|
14
launchbar/org.eclipse.launchbar.ui.tests/plugin.properties
Normal file
14
launchbar/org.eclipse.launchbar.ui.tests/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = Launch Bar UI Tests
|
||||
providerName = Eclipse CDT
|
|
@ -1,10 +1,10 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: LaunchBar UI
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.launchbar.ui;singleton:=true
|
||||
Bundle-Version: 2.4.0.qualifier
|
||||
Bundle-Activator: org.eclipse.launchbar.ui.internal.Activator
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
org.eclipse.ui,
|
||||
org.eclipse.ui.ide,
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
pluginName = LaunchBar UI
|
||||
providerName = Eclipse CDT
|
||||
|
||||
launchToolBar.label = LaunchBar
|
||||
targetsView.name = Launch Targets
|
||||
targetsContent.name = Launch Targets
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Serial Port
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.native.serial
|
||||
Bundle-Version: 1.2.0.qualifier
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Export-Package: org.eclipse.cdt.serial
|
||||
Automatic-Module-Name: org.eclipse.cdt.native.serial
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -3,6 +3,7 @@ output.. = bin/
|
|||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
os/,\
|
||||
plugin.properties,\
|
||||
about.html,\
|
||||
cdt_logo_icon32.png
|
||||
src.includes = native_src/,\
|
||||
|
|
14
native/org.eclipse.cdt.native.serial/plugin.properties
Normal file
14
native/org.eclipse.cdt.native.serial/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = Serial Port
|
||||
providerName = Eclipse CDT
|
|
@ -1,8 +1,8 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: QML Tests
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.qt.core.tests
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Version: 2.0.0.qualifier
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Require-Bundle: org.eclipse.osgi;bundle-version="3.10.100",
|
||||
|
@ -12,3 +12,4 @@ Bundle-ClassPath: .
|
|||
Bundle-Activator: org.eclipse.cdt.qt.core.tests.Activator
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Automatic-Module-Name: org.eclipse.cdt.qt.core.tests
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -2,5 +2,6 @@ source.. = src/
|
|||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
plugin.properties,\
|
||||
about.html
|
||||
src.includes = about.html
|
||||
|
|
14
qt/org.eclipse.cdt.qt.core.tests/plugin.properties
Normal file
14
qt/org.eclipse.cdt.qt.core.tests/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = QML Tests
|
||||
providerName = Eclipse CDT
|
|
@ -3,5 +3,6 @@ source.. = src/,\
|
|||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
.,\
|
||||
plugin.properties,\
|
||||
plugin.xml
|
||||
src.includes = about.html
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: MSVC Build Integration Plug-in Tests
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.msw.build.tests
|
||||
Bundle-Version: 1.0.0.qualifier
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Automatic-Module-Name: org.eclipse.cdt.msw.build.tests
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Require-Bundle: org.eclipse.core.runtime;bundle-version="3.15.0",
|
||||
|
@ -14,3 +14,4 @@ Require-Bundle: org.eclipse.core.runtime;bundle-version="3.15.0",
|
|||
org.junit,
|
||||
org.eclipse.cdt.msw.build
|
||||
Export-Package: org.eclipse.cdt.internal.msw.build.tests;x-internal:=true
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
source.. = src/
|
||||
output.. = bin/
|
||||
bin.includes = META-INF/,\
|
||||
plugin.properties,\
|
||||
.
|
||||
src.includes = about.html
|
||||
|
|
14
windows/org.eclipse.cdt.msw.build.tests/plugin.properties
Normal file
14
windows/org.eclipse.cdt.msw.build.tests/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2020 Torbjörn Svensson and others. All rights reserved.
|
||||
# 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:
|
||||
# Torbjörn Svensson - initial API and implementation
|
||||
##################################################################################
|
||||
|
||||
pluginName = MSVC Build Integration Plug-in Tests
|
||||
providerName = Eclipse CDT
|
|
@ -1,6 +1,6 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: MSVC Build Integration Plug-in
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.msw.build;singleton:=true
|
||||
Bundle-Version: 1.2.0.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.msw.build.Activator
|
||||
|
@ -15,7 +15,7 @@ Require-Bundle: org.eclipse.core.runtime,
|
|||
org.eclipse.jface
|
||||
Eclipse-LazyStart: true
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Automatic-Module-Name: org.eclipse.cdt.msw.build
|
||||
Export-Package: org.eclipse.cdt.msw.build,
|
||||
org.eclipse.cdt.msw.build.core
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
pluginName = MSVC Build Integration Plug-in
|
||||
providerName = Eclipse CDT
|
||||
|
||||
toolchain.name=Microsoft Visual C++
|
||||
|
||||
compiler.name.abstract=Abstract Compiler
|
||||
|
|
Loading…
Add table
Reference in a new issue