當我嘗試在GL服務器上運行我的程序時,出現錯誤。另外,我們有兩個軟件包,一個是所有軟件包,另一個是內含Driver.java的驅動程序包。它運行程序。使用ant和build.xml錯誤
BUILD FAILED 目標「運行」在項目「自動填寫」中不存在。
這是爲什麼?這裏是我的build.xml
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- WARNING: Eclipse auto-generated file.
Any modifications will be overwritten.
To include a user specific buildfile here, simply create one in the same
directory with the processing instruction <?eclipse.ant.import?>
as the first entry and export the buildfile again. -->
<project basedir="." default="build" name="AutoFill">
<property environment="env"/>
<property name="debuglevel" value="source,lines,vars"/>
<property name="target" value="1.7"/>
<property name="source" value="1.7"/>
<path id="AutoFill.classpath">
<pathelement location="bin"/>
</path>
<target name="init">
<mkdir dir="bin"/>
<copy includeemptydirs="false" todir="bin">
<fileset dir="src">
<exclude name="**/*.launch"/>
<exclude name="**/*.java"/>
</fileset>
</copy>
</target>
<target name="clean">
<delete dir="bin"/>
</target>
<target depends="clean" name="cleanall"/>
<target depends="build-subprojects,build-project" name="build"/>
<target name="build-subprojects"/>
<target depends="init" name="build-project">
<echo message="${ant.project.name}: ${ant.file}"/>
<javac debug="true" debuglevel="${debuglevel}" destdir="bin"
includeantruntime="false" source="${source}" target="${target}">
<src path="src"/>
<classpath refid="AutoFill.classpath"/>
</javac>
</target>
<target description="Build all projects which reference this project. Useful to
includeantruntime="false" source="${source}" target="${target}">
<target description="copy Eclipse compiler jars to ant lib directory" name="init-
<copy todir="${ant.library.dir}">
<fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar"/>
</copy>
<unzip dest="${ant.library.dir}">
<patternset includes="jdtCompilerAdapter.jar"/>
<fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar"/>
</unzip>
</target>
<target description="compile project with Eclipse compiler" name="build-eclipse
compiler">
<property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
<antcall target="build"/>
</target>
<target name="MaxHeap">
<java classname="proj3.MaxHeap" failonerror="true" fork="yes">
<classpath refid="AutoFill.classpath"/>
</java>
</target>
<target name="Driver">
<java classname="driver.Driver" failonerror="true" fork="yes">
<classpath refid="AutoFill.classpath"/>
</java>
</target>
</project>
你的目標是什麼?你的構建參數是什麼?它看起來像 - 它說的 - 你沒有「跑步」目標。 – Phil
我不太確定。我的驅動程序課程驅動整個程序,那是它? – user2161813