diff --git a/releng.control/ant_low_priority_helios.sh b/releng.control/ant_low_priority_helios.sh
new file mode 100644
index 0000000000000000000000000000000000000000..fc7294c26168fe5ddc96380cf77f57458c5caaec
--- /dev/null
+++ b/releng.control/ant_low_priority_helios.sh
@@ -0,0 +1,25 @@
+#!/usr/bin/env bash
+#
+# remember to leave no slashes on commonVariations in source command,
+# so that users path is used to find it (first). But, path on
+# commonComputedVariables means we expect to execute only our
+# version
+
+if [ -z $BUILD_INITIALIZED ]
+then
+# if releng_control not set, we assume we are already in releng_control directory
+   if [ -z $RELENG_CONTROL ]
+   then
+        RELENG_CONROL=`pwd`
+   fi
+   pushd .
+   cd ${RELENG_CONTROL}
+   source commonVariations.shsource
+   source ${RELENG_CONTROL}/commonComputedVariables.shsource
+   popd
+fi
+
+export DEP_DIR=helios
+
+echo "Running ant at priority +3"
+exec nice --adjustment 10 "${RELENG_CONTROL}/ant.sh" "$@"
diff --git a/releng.control/cc_config.xml b/releng.control/cc_config.xml
index 88f27602938f492e4e9fc861d98cd880b4929db3..4dffd4f8974dcb7473c972825e5780c0ad407a55 100644
--- a/releng.control/cc_config.xml
+++ b/releng.control/cc_config.xml
@@ -899,4 +899,71 @@
             </ant>
         </schedule>
     </project>
+    <project
+        forceOnly="false"
+        requireModification="true"
+        name="wtp-R3.3-I">
+        <modificationset
+            quietperiod="120">
+            <cvs
+                module="${env.RELENGCOMMON}"
+                reallyquiet="${env.CVS_QUIET}"/>
+            <cvs
+                module="${env.RELENGEJBTOOLS}"
+                reallyquiet="${env.CVS_QUIET}"/>
+            <cvs
+                module="${env.RELENGJEETOOLS}"
+                reallyquiet="${env.CVS_QUIET}"/>
+            <cvs
+                module="${env.RELENGSERVERTOOLS}"
+                reallyquiet="${env.CVS_QUIET}"/>
+            <cvs
+                module="${env.RELENGSOURCEEDITING}"
+                reallyquiet="${env.CVS_QUIET}"/>
+            <cvs
+                module="${env.RELENGWEBSERVICES}"
+                reallyquiet="${env.CVS_QUIET}"/>
+            <cvs
+                module="${env.RELENGJSF}"
+                reallyquiet="${env.CVS_QUIET}"/>
+            <cvs
+                module="${env.RELENGDALI}"
+                reallyquiet="${env.CVS_QUIET}"/>
+        </modificationset>
+        <schedule
+            interval="${time.twentyFourHours}">
+            <ant
+                antscript="${env.RELENG_CONTROL}/ant_low_priority_helios.sh">
+                <property
+                    name="buildType"
+                    value="I"/>
+                <property
+                    name="buildId"
+                    value="3.2I"/>
+                <property
+                    name="buildBranch"
+                    value="R3.2"/>
+                <property
+                    name="mapVersionTag"
+                    value="HEAD"/>
+                <property
+                    name="releng.dali-mapVersionTag"
+                    value="HEAD"/>
+                <property
+                    name="releng.jsf-mapVersionTag"
+                    value="HEAD"/>
+                <property
+                    name="build.distribution"
+                    value="wtp"/>
+<!-- remember to remove these "skips" as we approach a test or declared build  -->
+                <property
+                    name="SKIP_JAR_SIGNING"
+                    value="true"/>
+                <property
+                    name="normalizeJarFiles"
+                    value="false"/>
+            </ant>
+        </schedule>
+    </project>
+    
 </cruisecontrol>
\ No newline at end of file
diff --git a/releng.wtpbuilder/distribution/wtp.build/build.xml b/releng.wtpbuilder/distribution/wtp.build/build.xml
index 012f3dcb154836544ed8b4741a1a862f85c6893a..47e7242d48ab37984a5c1d397c746415f091bcc0 100644
--- a/releng.wtpbuilder/distribution/wtp.build/build.xml
+++ b/releng.wtpbuilder/distribution/wtp.build/build.xml
@@ -30,10 +30,14 @@
             name="buildTargets"
             value="${wtp.builder.home}/scripts/build/runbuild.xml"/>
 
-        <!-- for this distribution, dependencies come from releng -->
+        <!-- for this distribution, dependencies come from releng. 
+             assume no subdirectory, if not otherwise set (bug 285383).
+        -->
+        <property name="env.DEP_DIR" value="" />
+        
         <property
             name="dependency.properties"
-            value="${buildDirectory}/maps/${env.RELENG}/maps/dependencies.properties"/>
+            value="${buildDirectory}/maps/${env.RELENG}/${env.DEP_DIR}/maps/dependencies.properties"/>
 
         <!-- calling label.xml to createg label.properties file -->
         <ant
diff --git a/releng.wtpbuilder/distribution/wtp.site/publish.xml b/releng.wtpbuilder/distribution/wtp.site/publish.xml
index 82c66ec92ea077d3136e61d32daf7f1f1dab8868..d8e750be32817219e34ba09fad8acc83e0ffb01f 100644
--- a/releng.wtpbuilder/distribution/wtp.site/publish.xml
+++ b/releng.wtpbuilder/distribution/wtp.site/publish.xml
@@ -85,8 +85,14 @@
             testManifestFileName: name of xml file containing
             descriptions of zip types and log files
         -->
+       <!-- for this distribution, dependencies come from releng. 
+             assume no subdirectory, if not otherwise set (bug 285383).
+        -->
+        <property name="env.DEP_DIR" value="" />
+        
         <property
-            file="${buildDirectory}/maps/${env.RELENG}/maps/dependencies.properties"/>
+            name="dependency.properties"
+            value="${buildDirectory}/maps/${env.RELENG}/${env.DEP_DIR}/maps/dependencies.properties"/>
 
         <!-- create tables of test plugin compiles first -->
         <antcall
diff --git a/releng.wtpbuilder/distribution/wtp.tests/build.xml b/releng.wtpbuilder/distribution/wtp.tests/build.xml
index 5b82bfcee809fc63b76d2141d6b6d19289860339..e99272f0a952dc40bd9c637555d86fa8f8b2f37f 100644
--- a/releng.wtpbuilder/distribution/wtp.tests/build.xml
+++ b/releng.wtpbuilder/distribution/wtp.tests/build.xml
@@ -93,9 +93,14 @@
         <ant
             antfile="${test.component.dir}/testdependency.xml"
             target="get">
-            <property
-                name="dependency.properties"
-                value="${buildDirectory}/maps/${env.RELENG}/maps/dependencies.properties"/>
+       <!-- for this distribution, dependencies come from releng. 
+             assume no subdirectory, if not otherwise set (bug 285383).
+        -->
+        <property name="env.DEP_DIR" value="" />
+        
+        <property
+            name="dependency.properties"
+            value="${buildDirectory}/maps/${env.RELENG}/${env.DEP_DIR}/maps/dependencies.properties"/>
             <property
                 name="base.install.dir"
                 value="${testRoot}"/>
diff --git a/releng.wtpbuilder/distribution/wtp.tests/standaloneTest.xml b/releng.wtpbuilder/distribution/wtp.tests/standaloneTest.xml
index 7a487eb62c3bc7c3ad345f06b3fa83c5951e5600..714391b9b0cc7017214a13bae4b57be5f5f2bb13 100644
--- a/releng.wtpbuilder/distribution/wtp.tests/standaloneTest.xml
+++ b/releng.wtpbuilder/distribution/wtp.tests/standaloneTest.xml
@@ -43,17 +43,27 @@
             dir="${testRoot}"/>
         <antcall
             target="getReleng"/>
+    	
+    	
+    	       <!-- for this distribution, dependencies come from releng. 
+    	             assume no subdirectory, if not otherwise set (bug 285383).
+    	        -->
+    	        <property name="env.DEP_DIR" value="" />
         <fail
-            message="Required file does not exist: ${env.PROJECT_BUILDERS}/${projectname}/${env.RELENG}/maps/dependencies.properties">
+            message="Required file does not exist: ${env.PROJECT_BUILDERS}/${projectname}/${env.RELENG}/${env.DEP_DIR}/maps/dependencies.properties">
             <condition>
                 <not>
                     <available
-                        file="${env.PROJECT_BUILDERS}/${projectname}/${env.RELENG}/maps/dependencies.properties"/>
+                        file="${env.PROJECT_BUILDERS}/${projectname}/${env.RELENG}/${env.DEP_DIR}/maps/dependencies.properties"/>
                 </not>
             </condition>
         </fail>
+
+        
         <property
-            file="${env.PROJECT_BUILDERS}/${projectname}/${env.RELENG}/maps/dependencies.properties"/>
+            name="dependency.properties"
+            value="${buildDirectory}/maps/${env.RELENG}/${env.DEP_DIR}/maps/dependencies.properties"/>
+            	
         <antcall
             target="getDependencies"/>
         <antcall