使用maven将不同的项目构建为1个项目

发布于 2024-10-17 05:50:03 字数 151 浏览 3 评论 0原文

我有一个项目,其中有 20 个不同的项目,这是使用 ant 构建的。现在我想将其移动到 Maven 构建。我已经为所有 20 个项目 + 1 个主项目创建了 jar。我需要构建这个主项目来获取应用程序正在运行。我正在使用 NetBeans 6.7.1。我将如何集成该项目并部署它?请帮忙!

I have a project which has 20 different projects this was build using ant.now i want to move it to maven build.I have created jars for all the 20 projects + 1 main project.I need to build this main project to get the app running.I am working with NetBeans 6.7.1.How am i going to integrate this project and deploy it?Please help !

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

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

发布评论

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

评论(1

海之角 2024-10-24 05:50:03

在 Maven 中,您可以创建一个 多模块项目或添加其他项目作为依赖项

我更喜欢第一种方法,因为它可以让您在一次运行中构建所有内容(这正是其他人更喜欢第二个版本的原因,因为他们希望他们的项目彼此独立)。

无论哪种方式,运行 mvn deploy 或使用 maven-release-plugin 在单个项目或多模块项目的根项目上。

In maven, you can either create a multi-module project or add the other projects as dependencies.

I prefer the first approach, because it lets you build everything in one run (and that's exactly the reason why others prefer the second version, because they want their projects to be independent of each other).

Either way, run mvn deploy or use the maven-release-plugin on the individual projects or the root project of a multi-module project.

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