如何将类文件添加到 Maven2 项目
所以我正在开发一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
资源:
Try
Resources :