grails 不生成 ant 构建文件

发布于 2024-12-10 11:20:41 字数 139 浏览 0 评论 0原文

我是圣杯的初学者。我从快速入门教程中了解到,grails create-app 将为 Ant 生成一个 build.xml。

我执行命令。但无法获取 build.xml 文件。是否有遗漏任何步骤?任何帮助表示赞赏。

I'm a beginner of Grail. I learned from the quick-start tutorial that the grails create-app will generate a build.xml for Ant.

I execute the command. but couldn't get the build.xml file. Is there missing any steps? Any help is appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最舍不得你 2024-12-17 11:20:41

正如唐所说,你真的不需要它。但如果您想要自动创建过去的 build.xml,请运行

grails integrate-with --ant

See http://grails.org/doc/latest/ref/Command%20Line/integrate-with.html

As Don said you really don't need it. But if you want the build.xml that used to be automatically created, run

grails integrate-with --ant

See http://grails.org/doc/latest/ref/Command%20Line/integrate-with.html

幸福不弃 2024-12-17 11:20:41

Grails 可能会“在后台”生成一个 build.xml 文件,但是您没有理由担心这一点,因为在使用 Grails 进行开发时您并不直接使用 Ant。相反,您可以使用 Grails 命令(例如 create-app)来创建、构建、测试、部署等 Grails 应用程序。

create-app 命令创建一个新应用程序。要运行该应用程序,请从项目的根目录执行命令grails run-app

Grails may generate a build.xml file "under the hood", but there's no reason for you to worry about this, because you don't work with Ant directly when developing with Grails. Instead you use Grails commands (like create-app) to create, build, test, deploy, etc. Grails applications.

The create-app command creates a new application. To run the application, execute the command grails run-app from the root directory of the project.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文