1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 13:05:22 +02:00

Bug 466941 - fix Anduino plugin names and providers.

Externalize them and give the proper provider (not me :).

Change-Id: Ic47a0c1251c50a05b3058a9e22fb869045babd47
This commit is contained in:
Doug Schaefer 2015-05-11 16:49:45 -04:00
parent 0ca3244fbb
commit 46f84a4b03
6 changed files with 35 additions and 6 deletions

View file

@ -1,10 +1,10 @@
Manifest-Version: 1.0 Manifest-Version: 1.0
Bundle-ManifestVersion: 2 Bundle-ManifestVersion: 2
Bundle-Name: Arduino C++ Core Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.cdt.arduino.core;singleton:=true Bundle-SymbolicName: org.eclipse.cdt.arduino.core;singleton:=true
Bundle-Version: 1.0.0.qualifier Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.cdt.arduino.core.internal.Activator Bundle-Activator: org.eclipse.cdt.arduino.core.internal.Activator
Bundle-Vendor: Doug Schaefer Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.core.runtime, Require-Bundle: org.eclipse.core.runtime,
org.eclipse.core.resources, org.eclipse.core.resources,
org.eclipse.debug.core, org.eclipse.debug.core,
@ -20,3 +20,4 @@ Bundle-ActivationPolicy: lazy
Bundle-ClassPath: libs/freemarker-2.3.22.jar, Bundle-ClassPath: libs/freemarker-2.3.22.jar,
. .
Export-Package: org.eclipse.cdt.arduino.core Export-Package: org.eclipse.cdt.arduino.core
Bundle-Localization: plugin

View file

@ -3,6 +3,7 @@ bin.includes = META-INF/,\
.,\ .,\
plugin.xml,\ plugin.xml,\
templates/,\ templates/,\
libs/freemarker-2.3.22.jar,\
about.html,\ about.html,\
schema/ schema/,\
plugin.properties,\
libs/

View file

@ -0,0 +1,12 @@
###############################################################################
# Copyright (c) 2015 QNX Software Systems 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:
# QNX Software Systems - initial API and implementation
###############################################################################
pluginName=Arduino C++ Core
providerName=Eclipse CDT

View file

@ -1,6 +1,6 @@
Manifest-Version: 1.0 Manifest-Version: 1.0
Bundle-ManifestVersion: 2 Bundle-ManifestVersion: 2
Bundle-Name: Arduino UI Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.cdt.arduino.ui;singleton:=true Bundle-SymbolicName: org.eclipse.cdt.arduino.ui;singleton:=true
Bundle-Version: 1.0.0.qualifier Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.cdt.arduino.ui.internal.Activator Bundle-Activator: org.eclipse.cdt.arduino.ui.internal.Activator
@ -20,3 +20,5 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.cdt.native.serial;bundle-version="1.0.0" org.eclipse.cdt.native.serial;bundle-version="1.0.0"
Bundle-RequiredExecutionEnvironment: JavaSE-1.7 Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Bundle-ActivationPolicy: lazy Bundle-ActivationPolicy: lazy
Bundle-Vendor: %providerName
Bundle-Localization: plugin

View file

@ -2,5 +2,6 @@ bin.includes = META-INF/,\
.,\ .,\
plugin.xml,\ plugin.xml,\
icons/,\ icons/,\
about.html about.html,\
plugin.properties
source.. = src/ source.. = src/

View file

@ -0,0 +1,12 @@
###############################################################################
# Copyright (c) 2015 QNX Software Systems 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:
# QNX Software Systems - initial API and implementation
###############################################################################
pluginName=Arduino C++ UI
providerName=Eclipse CDT