有没有办法自动将ant的build.xml转换为build.gradle
有没有办法自动将ant的build.xml转换为build.gradle。我知道我们可以使用以下方法将 ant 文件包含在 gradle 文件本身中: ant.importBuild 'build.xml'
但我不希望这样。我必须创建 gradle 构建脚本 &删除 ant 构建脚本。有什么办法可以将 ant build 转换为 gradle build 脚本吗?
Is there way to automatically convert ant's build.xml to build.gradle. I know we can include ant file in gradle file itself using : ant.importBuild 'build.xml'
But i do not want that. I have to create gradle build script & remove the ant build script. Is there any way, we can convert ant build to gradle build script ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,目前 Gradle 仅提供将 Maven 转换为 Gradle 的支持。
https://docs.gradle.org/current/userguide/build_init_plugin.html
但是,Gradle 确实提供了如何从 Ant 迁移到 Gradle 的文档: https://docs.gradle.org/current/userguide/migration_from_ant.html
No, currently Gradle only provides support for converting Maven to Gradle.
https://docs.gradle.org/current/userguide/build_init_plugin.html
However, Gradle does provide documentation how to migrate from Ant to Gradle: https://docs.gradle.org/current/userguide/migrating_from_ant.html