如何将类文件添加到 Maven2 项目

发布于 2024-09-17 19:07:43 字数 336 浏览 5 评论 0原文

所以我正在开发一个java项目(一个使用maven2的现有java项目,而不是我的)。一切正常。 我将一个新类添加到源目录中。

我执行mvncompile并获得成功。 然后我执行 `mvn exec:java -Dexec.mainClass="package.NewClass"

并得到 classNotFoundException

它确实编译了新文件,我可以在正确的目录中看到 NewClass.class 与其他班级。所以我没有得到 classNotFoundException。我需要对 pom.xml 进行任何更改吗?

谢谢!!

So I'm working on a java project (an exitsing java project that uses maven2, not mine). Everything works fine.
I add a new class to the source directory.

I do mvn compile and get success.
I then do `mvn exec:java -Dexec.mainClass="package.NewClass"

and get classNotFoundException.

It does compile the new file, and I can see the NewClass.class in the right directory
with the other classes. So I don't get the classNotFoundException. Do I need to make any changes to the pom.xml?

Thanks!!

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

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

发布评论

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

评论(1

梦罢 2024-09-24 19:07:43

尝试

mvn exec:java -Dexec.mainClass="package.NewClass"

资源:

Try

mvn exec:java -Dexec.mainClass="package.NewClass"

Resources :

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