The build files have hard coded paths in them which makes it kind of hard to work with. Here is some modifications to get rid of the hard coded files.
In the top of the file add:
<path id="eclipse.plugins.libs">
<fileset dir="${eclipse.home}/plugins" includes="**/*.jar"/>
</path><javac destdir="/org-jboss-ide-eclipse-core.jar.bin" failonerror="" verbose="" debug="" includeAntRuntime="no" bootclasspath=""> <src path="src/"/> <classpath> <path refid="eclipse.plugins.libs"/> <pathelement path="../org.apache.xalan/bin;../org.apache.xalan/xalan.jar;../org.apache.xalan/xercesImpl.jar;../org.apache.xalan/xml-apis.jar"/> </classpath> </javac>