I have an enterprise application which I am in the process of converting from an Ant build to Maven. It\'s almost completely converted; this is the very last thing I need t
I figured out the answer RIGHT after submitting this question.
In a parent POM, I had the following:
org.apache.maven.plugins
maven-jar-plugin
2.4
**/*.class
**/*.jdo
**/*.properties
**/*.xml
I added **/*.ftl
to the list of includes and now it's working.
EDIT: Better yet, I removed the configuration tag entirely, and it's still working. I think it was a remnant from before I figured out that the .properties files and other things I needed on the classpath needed to be in src/main/resources and not src/main/java.