我在ANT脚本下面启动/停止tomcat:
<project name="sample">
<property name="name" value="sample"/>
<path id="catalina-ant-classpath">
<fileset dir="D:\apache-tomcat-7.0.47-windows-x64\apache-tomcat-7.0.47\lib">
<include name="catalina-ant.jar"/>
</fileset>
</path>
<taskdef name="start" classname="org.apache.catalina.ant.StartTask">
<classpath refid="catalina-ant-classpath"/>
</taskdef>
<taskdef name="stop" classname="org.apache.catalina.ant.StopTask">
<classpath refid="catalina-ant-classpath"/>
</taskdef>
<target name="start" description="Start Tomcat application">
<start url="http://localhost:8080/manager"
username="uname"
password="pwd"/>
</target>
<target name="stop" description="Stop Tomcat application">
<stop url="http://localhost:8080/manager"
username="uname"
password="pwd"/>
</target>
</project>
当我在脚本上方运行时,它会抛出Error:
D:\ apache-ant-1.9.3-bin \ apache-ant-1.9.3 \ bin&gt; ant build.xml stop Buildfile:D:\ apache-ant-1.9.3-bin \ apache-ant-1.9.3 \ bin \ build.xml 建筑失败 目标“build.xml”在项目“sample”中不存在。
以上脚本有什么问题吗?
谢谢!
答案 0 :(得分:3)
您的build.xml缺少根元素<project>
。请参阅ant文档。
删除name
属性,它是可选的。