我在Java
创建了一个小程序。它使用Java类,一些图像并生成一些其他资源(.php
文件,图像,样式表等)。
我正在将来源编译为.jar
并创建一个.exe
程序,该程序应该使用我的.jar
和其他资源。
组织Java程序的所有源代码的最佳实践是什么?
答案 0 :(得分:6)
即使您没有使用maven,我也会推荐以下maven结构作为standard convention。
src/main/java Application/Library sources
src/main/resources Application/Library resources
src/main/filters Resource filter files
src/main/assembly Assembly descriptors
src/main/config Configuration files
src/main/scripts Application/Library scripts
src/main/webapp Web application sources
src/test/java Test sources
src/test/resources Test resources
src/test/filters Test resource filter files
src/site Site
LICENSE.txt Project's license
NOTICE.txt Notices and attributions required by libraries that the project depends on
README.txt Project's readme