From a5c3b15c0798fc8bad94e117e8578cf7cffaf783 Mon Sep 17 00:00:00 2001 From: Michael Scharf Date: Fri, 3 Aug 2007 15:33:15 +0000 Subject: [PATCH] Initial version --- org.eclipse.tm.terminal.test/.classpath | 7 +++++ org.eclipse.tm.terminal.test/.project | 28 +++++++++++++++++++ .../.settings/org.eclipse.jdt.core.prefs | 7 +++++ .../META-INF/MANIFEST.MF | 10 +++++++ org.eclipse.tm.terminal.test/build.properties | 4 +++ .../plugin.properties | 17 +++++++++++ 6 files changed, 73 insertions(+) create mode 100644 org.eclipse.tm.terminal.test/.classpath create mode 100644 org.eclipse.tm.terminal.test/.project create mode 100644 org.eclipse.tm.terminal.test/.settings/org.eclipse.jdt.core.prefs create mode 100644 org.eclipse.tm.terminal.test/META-INF/MANIFEST.MF create mode 100644 org.eclipse.tm.terminal.test/build.properties create mode 100644 org.eclipse.tm.terminal.test/plugin.properties diff --git a/org.eclipse.tm.terminal.test/.classpath b/org.eclipse.tm.terminal.test/.classpath new file mode 100644 index 00000000000..ce73933404a --- /dev/null +++ b/org.eclipse.tm.terminal.test/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/org.eclipse.tm.terminal.test/.project b/org.eclipse.tm.terminal.test/.project new file mode 100644 index 00000000000..492f603b4c0 --- /dev/null +++ b/org.eclipse.tm.terminal.test/.project @@ -0,0 +1,28 @@ + + + org.eclipse.tm.terminal.test + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + + diff --git a/org.eclipse.tm.terminal.test/.settings/org.eclipse.jdt.core.prefs b/org.eclipse.tm.terminal.test/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 00000000000..d4ce580d8a5 --- /dev/null +++ b/org.eclipse.tm.terminal.test/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,7 @@ +#Fri Aug 03 17:25:20 CEST 2007 +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.2 +org.eclipse.jdt.core.compiler.compliance=1.4 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=warning +org.eclipse.jdt.core.compiler.problem.enumIdentifier=warning +org.eclipse.jdt.core.compiler.source=1.3 diff --git a/org.eclipse.tm.terminal.test/META-INF/MANIFEST.MF b/org.eclipse.tm.terminal.test/META-INF/MANIFEST.MF new file mode 100644 index 00000000000..df2c0fd4454 --- /dev/null +++ b/org.eclipse.tm.terminal.test/META-INF/MANIFEST.MF @@ -0,0 +1,10 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %pluginName +Bundle-SymbolicName: org.eclipse.tm.terminal.test +Bundle-Version: 1.0.0.qualifier +Bundle-Vendor: %providerName +Bundle-Localization: plugin +Require-Bundle: org.junit, + org.eclipse.tm.terminal +Bundle-RequiredExecutionEnvironment: J2SE-1.4 diff --git a/org.eclipse.tm.terminal.test/build.properties b/org.eclipse.tm.terminal.test/build.properties new file mode 100644 index 00000000000..34d2e4d2dad --- /dev/null +++ b/org.eclipse.tm.terminal.test/build.properties @@ -0,0 +1,4 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + . diff --git a/org.eclipse.tm.terminal.test/plugin.properties b/org.eclipse.tm.terminal.test/plugin.properties new file mode 100644 index 00000000000..f7fa5add101 --- /dev/null +++ b/org.eclipse.tm.terminal.test/plugin.properties @@ -0,0 +1,17 @@ +############################################################################### +# Copyright (c) 2007 Wind River Systems, Inc. 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 +# +# Initial Contributors: +# The following Wind River employees contributed to the Terminal component +# that contains this file: Chris Thew, Fran Litterio, Stephen Lamb, +# Helmut Haigermoser and Ted Williams. +# +# Contributors: +# Michael Scharf (Wind River) - initial API and implementation +############################################################################### +pluginName = Target Management Terminal Tests +providerName = Eclipse.org