initial check in of xml product
diff --git a/assembly/features/org.eclipse.wtp.xml.dev.feature/feature.xml b/assembly/features/org.eclipse.wtp.xml.dev.feature/feature.xml
index 68b4689..1857eaa 100644
--- a/assembly/features/org.eclipse.wtp.xml.dev.feature/feature.xml
+++ b/assembly/features/org.eclipse.wtp.xml.dev.feature/feature.xml
@@ -16,6 +16,10 @@
       [Enter License Description here.]
    </license>
 
+   <includes
+         id="org.eclipse.wst.xml_ui.feature"
+         version="0.0.0"/>
+
    <plugin
          id="org.eclipse.wtp.xml.dev"
          download-size="0"
diff --git a/releng.wtpbuilder/distribution/xml.build/build.xml b/releng.wtpbuilder/distribution/xml.build/build.xml
index fca933f..29a811b 100644
--- a/releng.wtpbuilder/distribution/xml.build/build.xml
+++ b/releng.wtpbuilder/distribution/xml.build/build.xml
@@ -63,8 +63,7 @@
         <ant
             antfile="${wtp.builder.home}/scripts/build/label.xml" />
 
-		<!-- package -->
-            <antcall target="package" />
+
     </target>
 
 	<!-- invoking runbuild.xml targetting getBaseBuilder -->
@@ -84,179 +83,5 @@
             antfile="${buildTargets}"
             target="getBaseBuilder" />
     </target>
-    <target
-        name="package">
-        <!--
-            post, post packaging, for WTP ... "manually" assemble the
-            desired zips
-        -->
-        <antcall
-            target="combineArchives">
-            <param
-                name="corename"
-                value="" />
-        </antcall>
-    	<!--
-        <antcall
-            target="combineArchives">
-            <param
-                name="corename"
-                value="-sdk" />
-        </antcall>
-        <antcall
-            target="combineArchives">
-            <param
-                name="corename"
-                value="-Automated-Tests" />
-        </antcall>
-        -->
-    	<!--
-        <antcall
-            target="createNoOptionalZip">
-            <param
-                name="archiveName"
-                value="wtp-${buildLabel}.zip" />
-            <param
-                name="newarchiveName"
-                value="wtp-noop-${buildLabel}.zip" />
-        </antcall>
-        <antcall
-            target="createNoOptionalZip">
-            <param
-                name="archiveName"
-                value="wtp-sdk-${buildLabel}.zip" />
-            <param
-                name="newarchiveName"
-                value="wtp-sdk-noop-${buildLabel}.zip" />
-        </antcall>
-        -->
-        	
-    	<!-- <antcall target="createFprojZips"/>
-    	-->
-    		
-    </target>
-    <target
-        name="createNoOptionalZip">
-        <zip
-            destfile="${buildDirectory}/${buildLabel}/${newarchiveName}">
-            <zipfileset
-                src="${buildDirectory}/${buildLabel}/${archiveName}"
-                excludes="eclipse/plugins/org.eclipse.jst.ws.axis2*/**,eclipse/plugins/org.eclipse.jst.jsf.apache.trinidad.tagsupport*/**,eclipse/plugins/org.eclipse.jst.pagedesigner*/**,eclipse/plugins/org.eclipse.jpt.eclipselink*/**,eclipse/features/org.eclipse.jst.ws.axis2tools*/**,eclipse/features/org.eclipse.jst.webpageeditor*/**,eclipse/features/org.eclipse.jst.jsf.apache.trinidad.tagsupport*/**,eclipse/features/org.eclipse.jpt.eclipselink*/**" />
-        </zip>
-        <ant
-            antfile="${wtp.builder.home}/scripts/build/buildutilities.xml"
-            target="createChecksums">
-            <property
-                name="buildDirectory"
-                value="${buildDirectory}" />
-            <property
-                name="buildLabel"
-                value="${buildLabel}" />
-            <property
-                name="archiveName"
-                value="${newarchiveName}" />
-        </ant>
-    </target>
-    <target
-        name="combineArchives">
-        <property
-            name="archiveName"
-            value="wtp${corename}-${buildLabel}.zip" />
-        <delete
-            dir="${buildDirectory}/tempforrezipping"
-            failonerror="false" />
-        <exec
-            dir="${buildDirectory}/${buildLabel}"
-            executable="unzip"
-            failonerror="false">
-            <arg
-                line="-o -qq wtp-wst${corename}-${buildLabel}.zip -d ${buildDirectory}/tempforrezipping" />
-        </exec>
-        <exec
-            dir="${buildDirectory}/${buildLabel}"
-            executable="unzip"
-            failonerror="false">
-            <arg
-                line="-o -qq wtp-jst${corename}-${buildLabel}.zip -d ${buildDirectory}/tempforrezipping" />
-        </exec>
 
-        <exec
-            dir="${buildDirectory}/${buildLabel}"
-            executable="unzip"
-            failonerror="false">
-            <arg
-                line="-o -qq wtp-jpt${corename}-${buildLabel}.zip -d ${buildDirectory}/tempforrezipping" />
-        </exec>
-        <zip
-            destfile="${buildDirectory}/${buildLabel}/${archiveName}"
-            basedir="${buildDirectory}/tempforrezipping" />
-        <delete
-            dir="${buildDirectory}/tempforrezipping"
-            failonerror="false" />
-        <ant
-            antfile="${wtp.builder.home}/scripts/build/buildutilities.xml"
-            target="createChecksums">
-            <property
-                name="buildDirectory"
-                value="${buildDirectory}" />
-            <property
-                name="buildLabel"
-                value="${buildLabel}" />
-            <property
-                name="archiveName"
-                value="${archiveName}" />
-        </ant>
-    </target>
-	
-	<!-- Handles packaging of individual Faceted Project Framework distributions. -->
-	
-    <target name="createFprojZips" if="doCreateFprojZips">
-    	
-    	<delete file="${buildDirectory}/${buildLabel}/wtp-common-fproj-${buildLabel}.zip" failonerror="false"/>
-    	
-    	<zip destfile="${buildDirectory}/${buildLabel}/wtp-common-fproj-${buildLabel}.zip">
-    	  <zipfileset src="${buildDirectory}/${buildLabel}/wtp-sdk-${buildLabel}.zip">
-            <include name="eclipse/features/org.eclipse.wst.common.fproj_*/**"/>
-            <include name="eclipse/plugins/org.eclipse.wst.common.project.facet.core_*.jar"/>
-            <include name="eclipse/plugins/org.eclipse.wst.common.project.facet.ui_*.jar"/>
-    	  </zipfileset>
-    	</zip>
-    	  	
-    	<delete file="${buildDirectory}/${buildLabel}/wtp-common-fproj-sdk-${buildLabel}.zip" failonerror="false"/>
-    	
-    	<zip destfile="${buildDirectory}/${buildLabel}/wtp-common-fproj-sdk-${buildLabel}.zip">
-          <zipfileset src="${buildDirectory}/${buildLabel}/wtp-common-fproj-${buildLabel}.zip"/>
-      	  <zipfileset src="${buildDirectory}/${buildLabel}/wtp-sdk-${buildLabel}.zip">
-            <include name="eclipse/features/org.eclipse.wst.common.fproj.sdk_*/**"/>
-            <include name="eclipse/plugins/org.eclipse.wst.common.fproj.sdk_*.jar"/>
-            <include name="eclipse/plugins/org.eclipse.wst.common.project.facet.doc.api_*.jar"/>
-            <include name="eclipse/plugins/org.eclipse.wst.common.project.facet.core.source_*.jar"/>
-            <include name="eclipse/plugins/org.eclipse.wst.common.project.facet.ui.source_*.jar"/>
-    	  </zipfileset>
-    	</zip>
-
-    	<delete file="${buildDirectory}/${buildLabel}/wtp-common-fproj-enablement-jdt-${buildLabel}.zip" failonerror="false"/>
-    	
-    	<zip destfile="${buildDirectory}/${buildLabel}/wtp-common-fproj-enablement-jdt-${buildLabel}.zip">
-      	  <zipfileset src="${buildDirectory}/${buildLabel}/wtp-sdk-${buildLabel}.zip">
-            <include name="eclipse/features/org.eclipse.jst.common.fproj.enablement.jdt_*/**"/>
-            <include name="eclipse/plugins/org.eclipse.jst.common.project.facet.core_*.jar"/>
-            <include name="eclipse/plugins/org.eclipse.jst.common.project.facet.ui_*.jar"/>
-    	  </zipfileset>
-    	</zip>
-
-    	<delete file="${buildDirectory}/${buildLabel}/wtp-common-fproj-enablement-jdt-sdk-${buildLabel}.zip" failonerror="false"/>
-    	
-    	<zip destfile="${buildDirectory}/${buildLabel}/wtp-common-fproj-enablement-jdt-sdk-${buildLabel}.zip">
-          <zipfileset src="${buildDirectory}/${buildLabel}/wtp-common-fproj-enablement-jdt-${buildLabel}.zip"/>
-      	  <zipfileset src="${buildDirectory}/${buildLabel}/wtp-sdk-${buildLabel}.zip">
-            <include name="eclipse/features/org.eclipse.jst.common.fproj.enablement.jdt.sdk_*/**"/>
-            <include name="eclipse/plugins/org.eclipse.jst.common.fproj.enablement.jdt.sdk_*.jar"/>
-            <include name="eclipse/plugins/org.eclipse.jst.common.project.facet.core.source_*.jar"/>
-            <include name="eclipse/plugins/org.eclipse.jst.common.project.facet.ui.source_*.jar"/>
-    	  </zipfileset>
-    	</zip>
-		
-    </target>
-	
 </project>
\ No newline at end of file