From b588b08034e846e1b1020e287a1918d2a61427a1 Mon Sep 17 00:00:00 2001 From: Doug Schaefer Date: Tue, 29 Dec 2015 18:55:11 -0500 Subject: [PATCH] Bug 484993 - Feature and build for Remote Launch Target support. Change-Id: Id07df46546e7852443377f0abd68bd8592e5f9e6 --- .../org.eclipse.launchbar.remote.core/pom.xml | 18 ++++++++++ .../org.eclipse.launchbar.remote/.project | 17 ++++++++++ .../build.properties | 1 + .../feature.properties | 33 +++++++++++++++++++ .../org.eclipse.launchbar.remote/feature.xml | 29 ++++++++++++++++ features/org.eclipse.launchbar.remote/pom.xml | 19 +++++++++++ features/org.eclipse.launchbar/feature.xml | 2 +- features/org.eclipse.launchbar/pom.xml | 2 +- pom.xml | 4 +++ repo/category.xml | 3 ++ 10 files changed, 126 insertions(+), 2 deletions(-) create mode 100644 bundles/org.eclipse.launchbar.remote.core/pom.xml create mode 100644 features/org.eclipse.launchbar.remote/.project create mode 100644 features/org.eclipse.launchbar.remote/build.properties create mode 100644 features/org.eclipse.launchbar.remote/feature.properties create mode 100644 features/org.eclipse.launchbar.remote/feature.xml create mode 100644 features/org.eclipse.launchbar.remote/pom.xml diff --git a/bundles/org.eclipse.launchbar.remote.core/pom.xml b/bundles/org.eclipse.launchbar.remote.core/pom.xml new file mode 100644 index 00000000000..a02aca3e5f3 --- /dev/null +++ b/bundles/org.eclipse.launchbar.remote.core/pom.xml @@ -0,0 +1,18 @@ + + + 4.0.0 + + + org.eclipse.launchbar + parent + 1.0.0-SNAPSHOT + ../../pom.xml + + + org.eclipse.launchbar.remote.core + 1.0.0-SNAPSHOT + + eclipse-plugin + diff --git a/features/org.eclipse.launchbar.remote/.project b/features/org.eclipse.launchbar.remote/.project new file mode 100644 index 00000000000..d9d66858d17 --- /dev/null +++ b/features/org.eclipse.launchbar.remote/.project @@ -0,0 +1,17 @@ + + + org.eclipse.launchbar.remote-feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/features/org.eclipse.launchbar.remote/build.properties b/features/org.eclipse.launchbar.remote/build.properties new file mode 100644 index 00000000000..64f93a9f0b7 --- /dev/null +++ b/features/org.eclipse.launchbar.remote/build.properties @@ -0,0 +1 @@ +bin.includes = feature.xml diff --git a/features/org.eclipse.launchbar.remote/feature.properties b/features/org.eclipse.launchbar.remote/feature.properties new file mode 100644 index 00000000000..8ec49e9a8a8 --- /dev/null +++ b/features/org.eclipse.launchbar.remote/feature.properties @@ -0,0 +1,33 @@ +############################################################################### +# Copyright (c) 2005, 2010 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 Corporation - initial API and implementation +############################################################################### +# features.properties +# contains externalized strings for feature.xml +# "%foo" in feature.xml corresponds to the key "foo" in this file +# java.io.Properties file (ISO 8859-1 with "\" escapes) +# This file should be translated. + +# "featureName" property - name of the feature +featureName=Remote Launch Targets + +# "providerName" property - name of the company that provides the feature +providerName=Eclipse CDT + +# "description" property - description of the feature +description=Support for IRemoteConnections as ILaunchTargets + +# copyright +copyright=\ +Copyright (c) 2015 QNX Software Systems and others\n\ +All rights reserved. This program and the accompanying materials\n\ +are made available under the terms of the Eclipse Public License v1.0\n\ +which accompanies this distribution, and is available at\n\ +http://www.eclipse.org/legal/epl-v10.html + diff --git a/features/org.eclipse.launchbar.remote/feature.xml b/features/org.eclipse.launchbar.remote/feature.xml new file mode 100644 index 00000000000..988d9acc32c --- /dev/null +++ b/features/org.eclipse.launchbar.remote/feature.xml @@ -0,0 +1,29 @@ + + + + + %description + + + + %copyright + + + + %license + + + + + diff --git a/features/org.eclipse.launchbar.remote/pom.xml b/features/org.eclipse.launchbar.remote/pom.xml new file mode 100644 index 00000000000..e2879f4a5fd --- /dev/null +++ b/features/org.eclipse.launchbar.remote/pom.xml @@ -0,0 +1,19 @@ + + + 4.0.0 + + + org.eclipse.launchbar + parent + 1.0.0-SNAPSHOT + ../../pom.xml + + + org.eclipse.launchbar.features + org.eclipse.launchbar.remote + 1.0.0-SNAPSHOT + + eclipse-feature + diff --git a/features/org.eclipse.launchbar/feature.xml b/features/org.eclipse.launchbar/feature.xml index 5e8f84c18df..b985d758bfe 100644 --- a/features/org.eclipse.launchbar/feature.xml +++ b/features/org.eclipse.launchbar/feature.xml @@ -2,7 +2,7 @@ diff --git a/features/org.eclipse.launchbar/pom.xml b/features/org.eclipse.launchbar/pom.xml index 6591751cf0d..cd2f48216b4 100644 --- a/features/org.eclipse.launchbar/pom.xml +++ b/features/org.eclipse.launchbar/pom.xml @@ -13,7 +13,7 @@ org.eclipse.launchbar.features org.eclipse.launchbar - 1.0.1-SNAPSHOT + 2.0.0-SNAPSHOT eclipse-feature diff --git a/pom.xml b/pom.xml index ee3c80c5ffe..937ef731652 100644 --- a/pom.xml +++ b/pom.xml @@ -70,6 +70,10 @@ bundles/org.eclipse.launchbar.ui features/org.eclipse.launchbar tests/org.eclipse.launchbar.core.tests + + bundles/org.eclipse.launchbar.remote.core + features/org.eclipse.launchbar.remote + repo diff --git a/repo/category.xml b/repo/category.xml index 348ed2527d8..2407cc4dc13 100644 --- a/repo/category.xml +++ b/repo/category.xml @@ -3,5 +3,8 @@ + + +