Remove Ant/Ivy build files from migrated projects

* oev.test.framework
* oev.test.launcher
diff --git a/org.eclipse.virgo.test.framework/build.xml b/org.eclipse.virgo.test.framework/build.xml
deleted file mode 100644
index 09ab263..0000000
--- a/org.eclipse.virgo.test.framework/build.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project name="org.eclipse.virgo.test.framework">
-
-	<property file="${basedir}/../build.properties"/>
-	<property file="${basedir}/../build.versions"/>
-	<import file="${basedir}/../virgo-build/standard/default.xml"/>
-</project>
diff --git a/org.eclipse.virgo.test.framework/ivy.xml b/org.eclipse.virgo.test.framework/ivy.xml
deleted file mode 100644
index d59d467..0000000
--- a/org.eclipse.virgo.test.framework/ivy.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?xml-stylesheet type="text/xsl" href="http://ivyrep.jayasoft.org/ivy-doc.xsl"?>
-<ivy-module
-		xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-		xsi:noNamespaceSchemaLocation="http://incubator.apache.org/ivy/schemas/ivy.xsd"
-		version="1.3">
-
-	<info organisation="${project.organisation}" module="${ant.project.name}"/>
-
-	<configurations>
-		<include file="${virgo.build.dir}/common/default-ivy-configurations.xml"/>
-	</configurations>
-
-	<publications>
-		<artifact name="${ant.project.name}"/>
-		<artifact name="${ant.project.name}-sources" type="src" ext="jar"/>
-	</publications>
-
-	<dependencies>
-        <dependency org="org.junit" name="com.springsource.org.junit" rev="${org.junit}"/>
-        <dependency org="org.eclipse.virgo.mirrored" name="org.eclipse.osgi" rev="${org.eclipse.osgi}" conf="compile->compile"/>
-		<dependency org="org.eclipse.virgo.util" name="org.eclipse.virgo.util.common" rev="${org.eclipse.virgo.util}" conf="compile->compile"/>
-		<dependency org="org.eclipse.virgo.test" name="org.eclipse.virgo.test.stubs" rev="latest.integration" conf="test->compile"/>
-        <dependency org="org.eclipse.virgo.test" name="org.eclipse.virgo.test.launcher" rev="latest.integration" conf="compile->compile"/>
-	</dependencies>
-
-</ivy-module>
diff --git a/org.eclipse.virgo.test.launcher/build.xml b/org.eclipse.virgo.test.launcher/build.xml
deleted file mode 100644
index 1f9bf6a..0000000
--- a/org.eclipse.virgo.test.launcher/build.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project name="org.eclipse.virgo.test.launcher">
-
-	<property file="${basedir}/../build.properties"/>
-	<property file="${basedir}/../build.versions"/>
-	<import file="${basedir}/smoke-test.xml"/>
-	<import file="${basedir}/../virgo-build/standard/default.xml"/>
-	
-	<target name="test.do" depends="quality-common.test.do, smoke-test"/>
-
-</project>
diff --git a/org.eclipse.virgo.test.launcher/ivy.xml b/org.eclipse.virgo.test.launcher/ivy.xml
deleted file mode 100644
index 51695e6..0000000
--- a/org.eclipse.virgo.test.launcher/ivy.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?xml-stylesheet type="text/xsl" href="http://ivyrep.jayasoft.org/ivy-doc.xsl"?>
-<ivy-module
-		xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-		xsi:noNamespaceSchemaLocation="http://incubator.apache.org/ivy/schemas/ivy.xsd"
-		version="1.3">
-
-	<info organisation="org.eclipse.virgo.test" module="${ant.project.name}" />
-
-	<configurations>
-		<include file="${virgo.build.dir}/common/default-ivy-configurations.xml"/>
-	</configurations>
-
-	<publications>
-		<artifact name="${ant.project.name}"/>
-		<artifact name="${ant.project.name}-sources" type="src" ext="jar"/>
-	</publications>
-
-	<dependencies>
-        <dependency org="org.eclipse.virgo.mirrored" name="org.eclipse.osgi" rev="${org.eclipse.osgi}" conf="compile->compile"/>
-		<dependency org="org.eclipse.virgo.util" name="org.eclipse.virgo.util.parser.launcher" rev="${org.eclipse.virgo.util}" conf="compile->runtime"/>
-		<dependency org="org.junit" name="com.springsource.org.junit" rev="${org.junit}" conf="test->runtime"/>
-	</dependencies>
-
-</ivy-module>
diff --git a/org.eclipse.virgo.test.launcher/smoke-test.xml b/org.eclipse.virgo.test.launcher/smoke-test.xml
deleted file mode 100644
index cf802db..0000000
--- a/org.eclipse.virgo.test.launcher/smoke-test.xml
+++ /dev/null
@@ -1,62 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project name="smoke-test" xmlns:ivy="antlib:org.apache.ivy.ant" xmlns:s="antlib:org.springframework.build">
-
-	<property name="console.port" value="2401"/>
-	<property name="test.bundle" value="src/test/resources/test-bundle"/>
-
-	<target name="smoke-test" description="Runs a smoke test on the OSGi Launcher">
-		<antcall target="startup"/>
-	    <antcall target="shutdown"/>
-	</target>
-
-	<target name="startup">
-        <ivy:cachepath resolveId="osgi.classpath" pathid="osgi.classpath" organisation="org.eclipse.virgo.mirrored"
-        module="org.eclipse.osgi" revision="${org.eclipse.osgi}" conf="runtime" type="jar" inline="true"/>
-        
-        <ivy:cachepath resolveId="parser.launcher.classpath" pathid="parser.launcher.classpath" organisation="org.eclipse.virgo.util"
-        module="org.eclipse.virgo.util.parser.launcher" revision="${org.eclipse.virgo.util}" conf="runtime" type="jar" inline="true"/>
-
-		<echo message="Starting Up OSGi Launcher" />
-		<java classname="org.eclipse.virgo.test.launcher.Launcher" fork="true" spawn="true">
-			<arg value="-Fosgi.console=${console.port}"/>
-            <arg value="-Fosgi.console.enable.builtin=true"/>
-
-			<arg value="-Fosgi.configuration.area=target"/>
-			<arg value="-B${test.bundle}"/>
-			<classpath>
-				<pathelement location="${jar.output.file}"/>
-				<path refid="osgi.classpath"/>
-				<path refid="parser.launcher.classpath"/>
-			</classpath>
-		</java>
-
-		<waitfor maxwait="5" maxwaitunit="minute" timeoutproperty="start.failed">
-			<socket server="localhost" port="${console.port}" />
-		</waitfor>
-		<fail if="start.failed" message="OSGi Launcher start up failed"/>
-	</target>
-
-	<target name="shutdown" depends="telnet.init">
-		<echo message="Shutting down OSGi Launcher" />
-		<s:telnet server="localhost" port="${console.port}" timeout="5">
-			<write echo="false">exit</write>
-		</s:telnet>
-	</target>
-
-	<target name="telnet.init" depends="ivy.init">
-		<ivy:cachepath resolveId="spring.ant.classpath" pathid="spring.ant.classpath"
-				organisation="org.springframework.build" module="org.springframework.build.ant"
-				revision="${org.springframework.build.ant.version}" conf="runtime" type="jar" inline="true"
-				log="download-only"/>
-		<ivy:cachepath resolveId="common-net.classpath" pathid="common-net.classpath" organisation="org.apache.commons"
-				module="com.springsource.org.apache.commons.net" revision="${org.apache.commons}"
-				conf="runtime" type="jar" inline="true" log="download-only"/>
-		<taskdef resource="org/springframework/build/ant/antlib.xml" uri="antlib:org.springframework.build">
-			<classpath>
-				<path refid="spring.ant.classpath"/>
-				<path refid="common-net.classpath"/>
-			</classpath>
-		</taskdef>
-	</target>
-
-</project>