Moves the JRE classes from boot class path to the regular class path along with any newer javax.implementations or normal jars. This emulates in practice the java.endorsed.dirs behavior.
diff --git a/standard/common.xml b/standard/common.xml
index 042c6b7..fda7b2b 100644
--- a/standard/common.xml
+++ b/standard/common.xml
@@ -10,20 +10,20 @@
  * Contributors:
  *   VMware Inc. - initial contribution
  ******************************************************************************
--->
+ -->
 <project name="common-standard" xmlns:s="antlib:org.springframework.build">
-
+    
 	<import file="../common/common.xml"/>
-
-<!-- Macros -->
+    
+    <!-- Macros -->
 	<macrodef name="do-compile">
 		<attribute name="classpath.id"/>
 		<attribute name="input.dir"/>
 		<attribute name="output.dir"/>
 		<attribute name="resources.dir"/>
 		<sequential>
-			<s:javac destdir="@{output.dir}" source="${source.version}" target="${target.version}"
-					debug="${compile.debug}" debugLevel="${compile.debug.level}">
+			<s:javac includeJavaRuntime="yes" bootclasspath="" destdir="@{output.dir}" source="${source.version}" target="${target.version}"
+                debug="${compile.debug}" debugLevel="${compile.debug.level}">
 				<compilerarg line="${compiler.args}"/>
 				<src path="@{input.dir}"/>
 				<include name="**/*.java"/>
@@ -41,5 +41,5 @@
 			</copy>
 		</sequential>
 	</macrodef>
-
+    
 </project>