我的目录结构为
src/
- main/
- java/
- com/
- resources/ // Folder where I have kept my properties file
- class1.java
- class2.java
当我尝试使用 maven 构建 JAR 时,资源文件夹被跳过,我只剩下这个结构
src/
- main/
- java/
- com/
- class1.class
- class2.class
我知道 Maven 使用传统的目录。资源结构为src/main/resources
. 但我希望我的资源文件夹与生成类文件的级别相同。
任何人都可以在这方面帮助我。
提前致谢。