【发布时间】:2014-05-21 23:38:53
【问题描述】:
当我尝试在 GL 服务器上运行我的程序时,出现错误。此外,我们有两个包,一个包含所有内容,另一个是包含 Driver.java 的驱动程序包。它运行程序。
构建失败 项目“AutoFill”中不存在目标“run”。
这是为什么?这是我的 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>
【问题讨论】:
-
你的目标是什么,你的构建参数是什么?看起来 - 正如它所说 - 你没有“运行”目标。
-
我不太确定。我的驱动程序类驱动整个程序,是这样吗?