diff --git a/rse/tests/org.eclipse.rse.tests/META-INF/MANIFEST.MF b/rse/tests/org.eclipse.rse.tests/META-INF/MANIFEST.MF index cf3bb3d35d4..19da6b159de 100644 --- a/rse/tests/org.eclipse.rse.tests/META-INF/MANIFEST.MF +++ b/rse/tests/org.eclipse.rse.tests/META-INF/MANIFEST.MF @@ -18,3 +18,4 @@ Require-Bundle: org.junit, org.eclipse.rse.services Eclipse-LazyStart: true Bundle-RequiredExecutionEnvironment: J2SE-1.4 +Bundle-ClassPath: rsetests.jar diff --git a/rse/tests/org.eclipse.rse.tests/about.html b/rse/tests/org.eclipse.rse.tests/about.html new file mode 100644 index 00000000000..460233046ee --- /dev/null +++ b/rse/tests/org.eclipse.rse.tests/about.html @@ -0,0 +1,28 @@ + + +
+ +June 2, 2006
+The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise +indicated below, the Content is provided to you under the terms and conditions of the +Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available +at http://www.eclipse.org/legal/epl-v10.html. +For purposes of the EPL, "Program" will mean the Content.
+ +If you did not receive this Content directly from the Eclipse Foundation, the Content is +being redistributed by another party ("Redistributor") and different terms and conditions may +apply to your use of any object code in the Content. Check the Redistributor's license that was +provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise +indicated below, the terms and conditions of the EPL still apply to any source code in the Content +and such source code may be obtained at http://www.eclipse.org.
+ + + \ No newline at end of file diff --git a/rse/tests/org.eclipse.rse.tests/about.ini b/rse/tests/org.eclipse.rse.tests/about.ini new file mode 100644 index 00000000000..fdd61ff0dd8 --- /dev/null +++ b/rse/tests/org.eclipse.rse.tests/about.ini @@ -0,0 +1,27 @@ +# about.ini +# contains information about a feature +# java.io.Properties file (ISO 8859-1 with "\" escapes) +# "%key" are externalized strings defined in about.properties +# This file does not need to be translated. + +# Property "aboutText" contains blurb for "About" dialog (translated) +aboutText=%blurb + +# Property "windowImage" contains path to window icon (16x16) +# needed for primary features only + +# Property "featureImage" contains path to feature image (32x32) +featureImage=eclipse32.png + +# Property "aboutImage" contains path to product image (500x330 or 115x164) +# needed for primary features only + +# Property "appName" contains name of the application (not translated) +# needed for primary features only + +# Property "welcomePage" contains path to welcome page (special XML-based format) +# optional + +# Property "welcomePerspective" contains the id of the perspective in which the +# welcome page is to be opened. +# optional \ No newline at end of file diff --git a/rse/tests/org.eclipse.rse.tests/about.mappings b/rse/tests/org.eclipse.rse.tests/about.mappings new file mode 100644 index 00000000000..bddaab43109 --- /dev/null +++ b/rse/tests/org.eclipse.rse.tests/about.mappings @@ -0,0 +1,6 @@ +# about.mappings +# contains fill-ins for about.properties +# java.io.Properties file (ISO 8859-1 with "\" escapes) +# This file does not need to be translated. + +0=@build@ \ No newline at end of file diff --git a/rse/tests/org.eclipse.rse.tests/about.properties b/rse/tests/org.eclipse.rse.tests/about.properties new file mode 100644 index 00000000000..321e58e073b --- /dev/null +++ b/rse/tests/org.eclipse.rse.tests/about.properties @@ -0,0 +1,25 @@ +############################################################################### +# Copyright (c) 2006 IBM Corporation, 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 +# +# Contributors: +# IBM Corporation - initial API and implementation +############################################################################### +# about.properties +# contains externalized strings for about.ini +# java.io.Properties file (ISO 8859-1 with "\" escapes) +# fill-ins are supplied by about.mappings +# This file should be translated. +# +# Do not translate any values surrounded by {} + +blurb=Remote System Explorer Unit Tests\n\ +\n\ +Version: {featureVersion}\n\ +Build id: {0}\n\ +\n\ +(c) Copyright Wind River Systems, Inc. and others 2006. All rights reserved.\n\ +Visit http://www.eclipse.org/dsdp/tm \ No newline at end of file diff --git a/rse/tests/org.eclipse.rse.tests/build.properties b/rse/tests/org.eclipse.rse.tests/build.properties index add787540f9..a3ba41395d1 100644 --- a/rse/tests/org.eclipse.rse.tests/build.properties +++ b/rse/tests/org.eclipse.rse.tests/build.properties @@ -9,15 +9,21 @@ # IBM Corporation - initial API and implementation # Martin Oberhuber (Wind River) - fix ant build and make consistent ############################################################################### -source.. = src/ -output.. = bin/ -bin.includes = .,\ +source.rsetests.jar = src/ +output.rsetests.jar = bin/ +bin.includes = rsetests.jar,\ plugin.xml,\ META-INF/,\ test.data/,\ test.xml,\ - plugin.properties + plugin.properties,\ + about.html,\ + about.ini,\ + about.mappings,\ + about.properties,\ + eclipse32.png # build with "assert" keyword enabled javacSource = 1.4 -javacTarget = 1.4 \ No newline at end of file +javacTarget = 1.4 +source.rsetests.jar = src/ diff --git a/rse/tests/org.eclipse.rse.tests/eclipse32.png b/rse/tests/org.eclipse.rse.tests/eclipse32.png new file mode 100644 index 00000000000..568fac1d05f Binary files /dev/null and b/rse/tests/org.eclipse.rse.tests/eclipse32.png differ diff --git a/rse/tests/org.eclipse.rse.tests/plugin.properties b/rse/tests/org.eclipse.rse.tests/plugin.properties index 4391e9c20b6..a02b04f32ed 100644 --- a/rse/tests/org.eclipse.rse.tests/plugin.properties +++ b/rse/tests/org.eclipse.rse.tests/plugin.properties @@ -13,5 +13,5 @@ # # Externalized MANIFEST.MF and plugin.xml strings # -pluginName=RSE Core Tests +pluginName=RSE Unit Tests providerName=Eclipse.org