diff --git a/examples/third-party/.classpath b/examples/third-party/.classpath
deleted file mode 100644
index e9bcd511f170c6944e444c4e3ffeb0a7652bedda..0000000000000000000000000000000000000000
--- a/examples/third-party/.classpath
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
-	<classpathentry kind="output" path="bin"/>
-</classpath>
diff --git a/examples/third-party/.project b/examples/third-party/.project
deleted file mode 100644
index 650cbe3e7e509e2c8eb4329b18c037547409114e..0000000000000000000000000000000000000000
--- a/examples/third-party/.project
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
-	<name>third-party</name>
-	<comment></comment>
-	<projects>
-	</projects>
-	<buildSpec>
-		<buildCommand>
-			<name>org.eclipse.jdt.core.javabuilder</name>
-			<arguments>
-			</arguments>
-		</buildCommand>
-	</buildSpec>
-	<natures>
-		<nature>org.eclipse.jdt.core.javanature</nature>
-	</natures>
-</projectDescription>
diff --git a/examples/third-party/get-jogamp-build.xml b/examples/third-party/get-jogamp-build.xml
deleted file mode 100644
index 78b2b35dd1c7bd906c1cbfcaa0e2429d234fcfcf..0000000000000000000000000000000000000000
--- a/examples/third-party/get-jogamp-build.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-<?xml version="1.0"?>
-
-<project name="nbody" default="get" basedir=".">
-   <property name="jogamp-jar-url" value="http://jogamp.org/deployment/archive/rc/gluegen_52-joal_32-jogl_66-jocl_41/jar"/>
-   <target name="get">
-      <!--      <get dest="jogamp">
-         <url url="${jogamp-jar-url}/jogl-all.jar"/> 
-         <url url="${jogamp-jar-url}/gluegen-rt.jar"/> 
-      </get>-->
-      <get dest="jogamp">
-         <url url="${jogamp-jar-url}/jogl-all-natives-windows-i586.jar"/> 
-         <url url="${jogamp-jar-url}/gluegen-rt-natives-windows-i586.jar"/> 
-      </get>
-      <unzip src="jogamp/jogl-all-natives-windows-i586.jar" dest="jogamp/windows-x86"/>
-      <unzip src="jogamp/gluegen-rt-natives-windows-i586.jar" dest="jogamp/windows-x86"/>
-      <delete dir="jogamp/windows-x86/META-INF"/>
-      <get dest="jogamp">
-         <url url="${jogamp-jar-url}/jogl-all-natives-windows-amd64.jar"/> 
-         <url url="${jogamp-jar-url}/gluegen-rt-natives-windows-amd64.jar"/> 
-      </get>
-      <unzip src="jogamp/jogl-all-natives-windows-amd64.jar" dest="jogamp/windows-amd64"/>
-      <unzip src="jogamp/gluegen-rt-natives-windows-amd64.jar" dest="jogamp/windows-amd64"/>
-      <delete dir="jogamp/windows-amd64/META-INF"/>
-      <get dest="jogamp">
-         <url url="${jogamp-jar-url}/jogl-all-natives-linux-i586.jar"/> 
-         <url url="${jogamp-jar-url}/gluegen-rt-natives-linux-i586.jar"/> 
-      </get>
-      <unzip src="jogamp/jogl-all-natives-linux-i586.jar" dest="jogamp/linux-i586"/>
-      <unzip src="jogamp/gluegen-rt-natives-linux-i586.jar" dest="jogamp/linux-i586"/>
-      <delete dir="jogamp/linux-i586/META-INF"/>
-      <get dest="jogamp">
-         <url url="${jogamp-jar-url}/jogl-all-natives-linux-amd64.jar"/> 
-         <url url="${jogamp-jar-url}/gluegen-rt-natives-linux-amd64.jar"/> 
-      </get>
-      <unzip src="jogamp/jogl-all-natives-linux-amd64.jar" dest="jogamp/linux-amd64"/>
-      <unzip src="jogamp/gluegen-rt-natives-linux-amd64.jar" dest="jogamp/linux-amd64"/>
-      <delete dir="jogamp/linux-amd64/META-INF"/>
-	  <get dest="jogamp">
-	     <url url="${jogamp-jar-url}/jogl-all-natives-macosx-universal.jar"/> 
-	     <url url="${jogamp-jar-url}/gluegen-rt-natives-macosx-universal.jar"/> 
-	  </get>
-     <unzip src="jogamp/jogl-all-natives-macosx-universal.jar" dest="jogamp/macosx-universal"/>
-     <unzip src="jogamp/gluegen-rt-natives-macosx-universal.jar" dest="jogamp/macosx-universal"/>
-     <delete dir="jogamp/macosx-universal/META-INF"/>
-   </target>
-	
-</project>