Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
(来源:gyazo.com)
maven 网站上的基础教程只展示了如何从头开始制作一个新项目。我对在现有项目中使用 Maven 感到困惑
我只想将 .java 文件编译到 bin 中,而不是将它们打包到 jar 中
如果你设置了默认的 maven 配置,编译后的 .class 文件将放在 target/classes 中。
注意:确保您的项目具有正确的布局,以便 maven 工作(无需额外的麻烦):
project root - pom.xml - src - main - java - <.java classes and directories for packages>