如何使用buildr生成JavaDoc?
我想使用 buildr 自动生成 JavaDoc。我尝试使用主页上的官方指南 PDF 中建议的方法。然而,这并没有奏效。
define "SharedState_ebBP", :layout=>eclipse_layout do
project.version = VERSION_NUMBER
project.group = GROUP
文档:窗口标题=> “放弃所有希望,进入这里的人”,:私人 =>真的 end
错误信息如下: RuntimeError: 不知道如何从 windowtitleAbandon 生成文档......
I want to automatically generate the JavaDoc using buildr. I tried using the approach suggested in the official Guide PDF from the Homepage. However, it did not work.
define "SharedState_ebBP", :layout=>eclipse_layout do
project.version = VERSION_NUMBER
project.group = GROUP
doc :windowtitle => "Abandon All Hope, Ye Who Enter Here", :private => true
end
The error message is as follows:
RuntimeError: Don't know how to generate documentation from windowtitleAbandon ......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置窗口标题的正确语法是
and 与
end
单独占一行。然而,这本身并不会导致 doc 任务自动运行。要在运行
buildr
时自动构建 JavaDoc,只需添加到构建文件的末尾:这将
default
任务重新定义为首先build
,然后 <代码>文档。The correct syntax for setting the window title is
and with
end
on a line by itself. However that in and of itself does not cause thedoc
task to get run automatically.To automatically build the JavaDoc when you run
buildr
simply add to the end of your buildfile:This redefines the
default
task to firstbuild
and thendoc
.