[181554] move to xml compiler output and improve access rule reporting
diff --git a/releng.wtpbuilder/components/jst.tests/build.properties b/releng.wtpbuilder/components/jst.tests/build.properties
index 3d63de8..23bb688 100644
--- a/releng.wtpbuilder/components/jst.tests/build.properties
+++ b/releng.wtpbuilder/components/jst.tests/build.properties
@@ -17,7 +17,7 @@
 # Set collectingFolder and archivePrefix to . if you want to create archives without
 # trailing eclipse in the paths of the included files
 collectingFolder=eclipse
-
+logExtension=.xml
 # The prefix that will be used in the generated archive.
 # Does not make sense to use a different archivePrefix than collectingFolder, 
 # because zip wouldn't find any files to include into the target zip otherwise
diff --git a/releng.wtpbuilder/components/jst.tests/customTargets.xml b/releng.wtpbuilder/components/jst.tests/customTargets.xml
index 01fe384..ce1f427 100644
--- a/releng.wtpbuilder/components/jst.tests/customTargets.xml
+++ b/releng.wtpbuilder/components/jst.tests/customTargets.xml
@@ -148,12 +148,13 @@
     <!-- ===================================================================== -->
     <!-- Steps to do before generating the build scripts. -->
     <!-- ===================================================================== -->
-    <target name="preGenerate"></target>
-
+        <target name="postGenerate">
+            <customizeAccessRules bundleDirectory="${buildDirectory}/plugins" defaultRules="+org/eclipse/wst/**/*, +org/eclipse/jst/**/*" />
+        </target>
     <!-- ===================================================================== -->
     <!-- Steps to do after generating the build scripts. -->
     <!-- ===================================================================== -->
-    <target name="postGenerate"></target>
+    <target name="preGenerate"></target>
 
 
     <!-- ===================================================================== -->
@@ -169,8 +170,6 @@
             <istrue value="${javacVerbose}" />
         </condition>
         <antcall target="gatherLogs" />
-
-
     </target>
 
 
@@ -188,7 +187,6 @@
     <!-- Steps to do after the build is done. -->
     <!-- ===================================================================== -->
     <target name="postBuild">
-
     </target>
 
 
@@ -210,12 +208,15 @@
         name="gatherLogs"
         if="logsAvailable">
         <mkdir dir="${buildDirectory}/${buildLabel}/testcompilelogs" />
+        <echo message="logExtension: ${logExtension}" />
         <antcall target="allElements">
             <param
                 name="target"
                 value="gatherLogs" />
+            <param
+                name="logExtension"
+                value="${logExtension}" />
         </antcall>
-
         <unzip
             dest="${buildDirectory}/${buildLabel}/testcompilelogs"
             overwrite="true">
@@ -225,6 +226,7 @@
         </unzip>
 
 
+
     </target>
 
     <target