Configuration Files in Package Structure Are Not Built in to Output
I have created an IntelliJ project over existing Java project. That old project has files besides java classes in the package structure (Configuration, properties, etc.) However when I look at the build output, I only see the compiled classes... none of the other resources are in the build output or ultimately in the JAR artifact I create. As a result the application fails when it is not able to find the resource stream on the classpath?
Why aren't these other files in the source tree being copied over?
-Benjamin
请先登录再写评论。
Settings | Compiler | Resource patterns
That's it. I wish I had asked yesterday. Thank-you.
-Benjamin