I have a built-in berth application (version 8.1.8), which I pack as a jar, and which uses JSP for its interface. It is built with maven version 3.0.3. The problem is that when I do: mvn packageit includes everything except my * .jsp files. I tried to move them to different places, but no luck.
I tried adding <include>src/main/java/**/*.jsp</include>to maven-compiler-pluginmy pom section . But this also did not affect.
Is there any way to make sure jsp files are included?
source
share