Moving the proxy target to multi-bundle as its the only place its needed
diff --git a/common/common.xml b/common/common.xml
index 91f2469..4ab4894 100644
--- a/common/common.xml
+++ b/common/common.xml
@@ -30,14 +30,6 @@
 		<istrue value="${local.build}"/>
 	</condition>
 
-	<target name="set-hudson-proxy">
-		<echo file="../virgo-build/lib/ivy/jets3t.properties"># Hudson Generated Proxy Configuration
-httpclient.proxy-autodetect=false
-httpclient.proxy-host=${http.proxyHost}
-httpclient.proxy-port=${http.proxyPort}
-</echo>
-	</target>
-
 <!-- Main targets -->
 	<target name="clean" description="Removes the target directory.">
 		<delete quiet="true" dir="${target.dir}"/>
diff --git a/multi-bundle/common.xml b/multi-bundle/common.xml
index 91e9bb6..eb47da4 100644
--- a/multi-bundle/common.xml
+++ b/multi-bundle/common.xml
@@ -26,6 +26,14 @@
 		<equals arg1="integration" arg2="${release.type}"/>
 	</condition>
 
+	<target name="set-hudson-proxy" description="Sets the jets3t property file to proxy settings from env variables.">
+		<echo file="../virgo-build/lib/ivy/jets3t.properties"># Hudson Generated Proxy Configuration
+httpclient.proxy-autodetect=false
+httpclient.proxy-host=${http.proxyHost}
+httpclient.proxy-port=${http.proxyPort}
+</echo>
+	</target>
+
 <!-- Main targets -->
 	<target name="clean"
 			description="Removes the target directory.">