[Edgent-417] cleanup old ant-build cruft
diff --git a/apps/build.xml b/apps/build.xml
deleted file mode 100644
index 482ed49..0000000
--- a/apps/build.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
- -->
-<project name="edgent.samples.apps" default="all" xmlns:jacoco="antlib:org.jacoco.ant">
-    <description>
-        Build sample applications.
-    </description>
-
-  <property name="component.path" value="samples"/>
-  <import file="../../common-build.xml"/>
-
-  <path id="compile.classpath">
-    <path refid="edgent.samples.classpath"/>
-    <pathelement location="${edgent.connectors}/mqtt/lib/edgent.connectors.mqtt.jar"/>
-    <pathelement location="${edgent.connectors}/file/lib/edgent.connectors.file.jar"/>
-    <pathelement location="${edgent.connectors}/serial/lib/edgent.connectors.serial.jar"/>
-    <pathelement location="${edgent.analytics}/math3/lib/edgent.analytics.math3.jar"/>
-    <pathelement location="${edgent.analytics}/sensors/lib/edgent.analytics.sensors.jar"/>
-    <pathelement location="${edgent.samples}/edgent.samples.topology.jar"/>
-    <pathelement location="${edgent.samples}/lib/edgent.samples.utils.jar"/>
-    <pathelement location="${edgent.samples}/edgent.samples.connectors.jar"/>
-    <path refid="edgent.ext.classpath" />
-  </path>
-
-  <path id="test.compile.classpath">
-    <pathelement location="${jar}" />
-    <path refid="compile.classpath"/>
-  </path>
-
-  <path id="test.classpath">
-    <pathelement location="${test.classes}" />
-    <path refid="test.compile.classpath"/>
-    <path refid="test.common.classpath" />
-  </path>
-
-</project>
diff --git a/connectors/build.xml b/connectors/build.xml
deleted file mode 100644
index 1b392a0..0000000
--- a/connectors/build.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
- -->
-<project name="edgent.samples.connectors" default="all" xmlns:jacoco="antlib:org.jacoco.ant">
-    <description>
-        Build samples demonstrating connector functionality.
-    </description>
-
-  <property name="component.path" value="samples"/>
-  <import file="../../common-build.xml"/>
-
-  <path id="compile.classpath">
-    <path refid="edgent.samples.classpath"/>
-    <pathelement location="${edgent.connectors}/mqtt/lib/edgent.connectors.mqtt.jar"/>
-    <pathelement location="${edgent.connectors}/kafka/lib/edgent.connectors.kafka.jar"/>
-    <pathelement location="${edgent.connectors}/file/lib/edgent.connectors.file.jar"/>
-    <pathelement location="${edgent.connectors}/iotp/lib/edgent.connectors.iotp.jar"/>
-    <pathelement location="${edgent.connectors}/jdbc/lib/edgent.connectors.jdbc.jar"/>
-    <pathelement location="${edgent.connectors}/serial/lib/edgent.connectors.serial.jar"/>
-    <pathelement location="${lib}/edgent.samples.topology.jar"/>
-    <pathelement location="${lib}/edgent.samples.utils.jar"/>
-    <path refid="edgent.ext.classpath" />
-  </path>
-
-  <path id="test.compile.classpath">
-    <pathelement location="${jar}" />
-    <path refid="compile.classpath"/>
-  </path>
-
-  <path id="test.classpath">
-    <pathelement location="${test.classes}" />
-    <path refid="test.compile.classpath"/>
-    <path refid="test.common.classpath" />
-  </path>
-
-</project>
diff --git a/console/build.xml b/console/build.xml
deleted file mode 100644
index ac6b81a..0000000
--- a/console/build.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
- -->
-<project name="edgent.samples.console" default="all" xmlns:jacoco="antlib:org.jacoco.ant">
-	<description>
-        Build samples demonstrating Console functionality.
-    </description>
-
-        <property name="component.path" value="samples"/>
-	<import file="../../common-build.xml" />
-
-	<path id="compile.classpath">
-		<path refid="edgent.samples.classpath"/>
-        <pathelement location="${edgent.console}/server/lib/edgent.console.server.jar" />
-		<pathelement location="${edgent.lib}/edgent.topology.jar" />
-		<pathelement location="${edgent.lib}/edgent.providers.development.jar" />
-		<pathelement location="${edgent.lib}/edgent.providers.direct.jar" />
-        <path refid="edgent.ext.classpath" />
-	</path>
-
-	<path id="test.compile.classpath">
-		<pathelement location="${jar}" />
-		<path refid="compile.classpath" />
-	</path>
-
-	<path id="test.classpath">
-		<pathelement location="${test.classes}" />
-		<path refid="test.compile.classpath" />
-	    <path refid="test.common.classpath" />
-	</path>
-
-</project>
diff --git a/scenarios/build.xml b/scenarios/build.xml
deleted file mode 100644
index e547404..0000000
--- a/scenarios/build.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
- -->
-
-<project name="edgent.samples.scenarios" default="all" xmlns:jacoco="antlib:org.jacoco.ant">
-    <description>
-        Build scenario applications.
-    </description>
-  <property environment="env"/>	
-  <property name="component.path" value="samples"/>
-  <condition property="src.excludes" value="**/range/sensor/**">
-    <not>
-      <isset property="env.PI4J_LIB" />
-    </not>
-  </condition>
-  <import file="../../common-build.xml"/>
-
-  <path id="compile.classpath">
-    <path refid="edgent.samples.classpath"/>
-    <pathelement location="${edgent.samples}/lib/edgent.samples.connectors.jar"/>
-    <pathelement location="${edgent.lib}/edgent.providers.iot.jar"/>
-    <pathelement location="${edgent.connectors}/iotp/lib/edgent.connectors.iotp.jar"/>
-    <pathelement location="${env.PI4J_LIB}/pi4j-core.jar"/>
-  </path>
-
-  <path id="test.compile.classpath">
-    <pathelement location="${jar}" />
-    <path refid="compile.classpath"/>
-  </path>
-
-  <path id="test.classpath">
-    <pathelement location="${test.classes}" />
-    <path refid="test.compile.classpath"/>
-    <path refid="test.common.classpath" />
-  </path>
-
-</project>
diff --git a/topology/build.xml b/topology/build.xml
deleted file mode 100644
index a97b9d8..0000000
--- a/topology/build.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
- -->
-<project name="edgent.samples.topology" default="all" xmlns:jacoco="antlib:org.jacoco.ant">
-    <description>
-        Build samples demonstrating add-on functionality.
-    </description>
-
-  <property name="component.path" value="samples"/>
-  <import file="../../common-build.xml"/>
-  <property name="ext" location="../../ext"/>
-
-  <path id="compile.classpath">
-    <path refid="edgent.samples.classpath"/>
-    <pathelement location="${edgent.analytics}/math3/lib/edgent.analytics.math3.jar"/>
-    <pathelement location="${edgent.lib}/edgent.runtime.jobregistry.jar"/>
-    <pathelement location="${lib}/edgent.samples.utils.jar"/>
-    <path refid="edgent.ext.classpath" />
-  </path>
-
-  <path id="test.compile.classpath">
-    <pathelement location="${jar}" />
-    <path refid="compile.classpath"/>
-  </path>
-
-  <path id="test.classpath">
-    <pathelement location="${test.classes}" />
-    <path refid="test.compile.classpath"/>
-    <path refid="test.common.classpath" />
-  </path>
-
-</project>
diff --git a/utils/build.xml b/utils/build.xml
deleted file mode 100644
index 8078a34..0000000
--- a/utils/build.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
- -->
-<project name="edgent.samples.utils" default="all" xmlns:jacoco="antlib:org.jacoco.ant">
-    <description>
-        Build samples demonstrating add-on functionality.
-    </description>
-
-  <property name="component.path" value="samples"/>
-  <import file="../../common-build.xml"/>
-
-  <path id="compile.classpath">
-    <path refid="edgent.samples.classpath"/>
-    <pathelement location="${edgent.utils}/metrics/lib/edgent.utils.metrics.jar"/>
-    <pathelement location="${edgent.analytics}/math3/lib/edgent.analytics.math3.jar"/>
-    <pathelement location="${edgent.analytics}/sensors/lib/edgent.analytics.sensors.jar"/>
-    <path refid="edgent.ext.classpath"/>
-  </path>
-
-  <path id="test.compile.classpath">
-    <pathelement location="${jar}" />
-    <path refid="compile.classpath"/>
-  </path>
-
-  <path id="test.classpath">
-    <pathelement location="${test.classes}" />
-    <path refid="test.compile.classpath"/>
-    <path refid="test.common.classpath" />
-  </path>
-
-</project>