From d386c464e3ac7eba12ff8e6a43d4913699e96ebc Mon Sep 17 00:00:00 2001 From: david_williams <david_williams> Date: Mon, 17 Dec 2007 14:54:16 +0000 Subject: [PATCH] add example launch to releng.control too --- releng.control/launchReadme.txt | 11 ++++ ...releng.control cc_project_build.xml.launch | 58 +++++++++++++++++++ releng.wtpbuilder/launchReadme.txt | 2 +- .../releng.wtpbuilder build.xml.launch | 1 - 4 files changed, 70 insertions(+), 2 deletions(-) create mode 100644 releng.control/launchReadme.txt create mode 100644 releng.control/releng.control cc_project_build.xml.launch diff --git a/releng.control/launchReadme.txt b/releng.control/launchReadme.txt new file mode 100644 index 000000000..738df00a9 --- /dev/null +++ b/releng.control/launchReadme.txt @@ -0,0 +1,11 @@ +The launch file provided in this directory is +an example only. It will need to be cusomized for +particular machines, and particular needs. +It is an example of how to run the build.xml file from the IDE, +for local developer tests. It is not used as part of production builds. + +In addition to the environment variables and properties in this launch config, +the directory pointed to by LOCAL_BUILD_PROPERTIES_DIR can be used +to supply many other properties. See the directorty 'localBuildExample' +for a set of example files and properties. + diff --git a/releng.control/releng.control cc_project_build.xml.launch b/releng.control/releng.control cc_project_build.xml.launch new file mode 100644 index 000000000..856c6a160 --- /dev/null +++ b/releng.control/releng.control cc_project_build.xml.launch @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="UTF-8"?> +<launchConfiguration type="org.eclipse.ant.AntLaunchConfigurationType"> +<booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="true"/> +<stringAttribute key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="${workspace}"/> +<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS"> +<listEntry value="/releng.control/cc_project_build.xml"/> +</listAttribute> +<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES"> +<listEntry value="1"/> +</listAttribute> +<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" value="true"/> +<mapAttribute key="org.eclipse.debug.core.environmentVariables"> +<mapEntry key="ANT_HOME" value="/home/shared/webtools/apps/apache-ant-1.7.0"/> +<mapEntry key="DISPLAY" value="127.0.0.1:11.0"/> +<mapEntry key="RELENGMAPS" value="webtools.maps"/> +<mapEntry key="LOCAL_PREREQS_CACHE" value="/home/shared/workbenchbuild/prereqcache"/> +<mapEntry key="USE_LOCAL_MAPS" value="false"/> +<mapEntry key="BASEWS" value="gtk"/> +<mapEntry key="WTP_CVS_SERVER" value="dev.eclipse.org"/> +<mapEntry key="JAVA_5_HOME" value="/home/shared/webtools/apps/jdk1.5.0_12"/> +<mapEntry key="RELENG" value="webtools.maps/releng"/> +<mapEntry key="BASEOS" value="linux"/> +<mapEntry key="LOCAL_BUILD_PROPERTIES_DIR" value="/home/shared/workbenchbuild/localBuildProperties"/> +<mapEntry key="RELENGDALI" value="webtools.maps/releng.dali"/> +<mapEntry key="CVS_RSH" value="ssh"/> +<mapEntry key="WTP_CVS_PROTOCOL" value="ext"/> +<mapEntry key="BUILD_HOME" value="/home/shared/workbenchbuild/"/> +<mapEntry key="WTP_CVS_USER" value="david_williams"/> +<mapEntry key="BASEARCH" value="x86"/> +<mapEntry key="JAVA_4_HOME" value="/home/shared/webtools/apps/j2sdk1.4.2_14"/> +<mapEntry key="RELENGWTPBUILDER" value="webtools.releng/releng.wtpbuilder"/> +<mapEntry key="WTP_CVS_ROOT" value="/cvsroot/webtools"/> +<mapEntry key="RELENGJSF" value="webtools.maps/releng.jsf"/> +</mapAttribute> +<listAttribute key="org.eclipse.debug.ui.favoriteGroups"> +<listEntry value="org.eclipse.ui.externaltools.launchGroup"/> +</listAttribute> +<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntClasspathProvider"/> +<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="org.eclipse.ant.internal.ui.antsupport.InternalAntRunner"/> +<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="releng.control"/> +<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" value="org.eclipse.ant.ui.AntClasspathProvider"/> +<stringAttribute key="org.eclipse.jdt.launching.VM_INSTALL_NAME" value="jdk1.5.0_12"/> +<stringAttribute key="org.eclipse.jdt.launching.VM_INSTALL_TYPE_ID" value="org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType"/> +<mapAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_PROPERTIES"> +<mapEntry key="eclipse.pdebuild.scripts" value="/home/davidw/eclipse/plugins/org.eclipse.pde.build_3.3.0.v20070517/scripts/"/> +<mapEntry key="build.distribution" value="wtp"/> +<mapEntry key="eclipse.pdebuild.templates" value="/home/davidw/eclipse/plugins/org.eclipse.pde.build_3.3.0.v20070517/templates/"/> +<mapEntry key="buildType" value="I"/> +<mapEntry key="buildBranch" value="R3.0"/> +<mapEntry key="releng.jsf-mapVersionTag" value="HEAD"/> +<mapEntry key="mapVersionTag" value="HEAD"/> +<mapEntry key="releng.dali-mapVersionTag" value="HEAD"/> +<mapEntry key="eclipse.pdebuild.home" value="/home/davidw/eclipse/plugins/org.eclipse.pde.build_3.3.0.v20070517/./"/> +</mapAttribute> +<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="${workspace_loc:/releng.control/cc_project_build.xml}"/> +<stringAttribute key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS" value="-d"/> +<stringAttribute key="process_factory_id" value="org.eclipse.ant.ui.remoteAntProcessFactory"/> +</launchConfiguration> diff --git a/releng.wtpbuilder/launchReadme.txt b/releng.wtpbuilder/launchReadme.txt index a5a099dc6..738df00a9 100644 --- a/releng.wtpbuilder/launchReadme.txt +++ b/releng.wtpbuilder/launchReadme.txt @@ -1,4 +1,4 @@ -The build.xml launch file provided in this directory is +The launch file provided in this directory is an example only. It will need to be cusomized for particular machines, and particular needs. It is an example of how to run the build.xml file from the IDE, diff --git a/releng.wtpbuilder/releng.wtpbuilder build.xml.launch b/releng.wtpbuilder/releng.wtpbuilder build.xml.launch index 812190210..edda868e4 100644 --- a/releng.wtpbuilder/releng.wtpbuilder build.xml.launch +++ b/releng.wtpbuilder/releng.wtpbuilder build.xml.launch @@ -53,6 +53,5 @@ </mapAttribute> <stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="${workspace_loc:/releng.wtpbuilder/build.xml}"/> <stringAttribute key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS" value="-d"/> -<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="/home/shared/workbenchbuild/"/> <stringAttribute key="process_factory_id" value="org.eclipse.ant.ui.remoteAntProcessFactory"/> </launchConfiguration> -- GitLab