我有一个调用外部 ant 任务的 ant 脚本:
<taskdef name="runStoriesAsEmbeddables" classname="org.jbehave.ant.RunStoriesAsEmbeddables"
classpathref="project.classpath" />
<runStoriesAsEmbeddables includes="**/Ant*Stories.java" ignoreFailureInStories="true"
ignoreFailureInView="false"
systemProperties="story.path=.,qr.host=*,qr.port=*" generateViewAfterStories="true" />
我想使用 -Xdebug 在 unix 机器上启动 JVM。我阅读了几个在“java”任务中使用“jvmarg value="-Xdebug"”的文档,但对于外部任务......我不知道如何使用它。谢谢!