Hi,
I am using
Maven 3.0 version to build my
struts project which has the project hierarchy as follows:
src -> com -> myorg -> source files
webContent
When I am building the project using maven goal - mvn compiler:compile, it says build successful. However, it says no source files available for compilation.
I read that default src directory that maven searches for is src/main/java. However, I don't want to convert my project into maven way of organization as it is a struts 2 guideline of organization.
Is it possible to specify the source folder in the pom.xml. I tried few things but could not make it work.
My pom.xml looks like the following:
Quick help is much appreciated.
Saurabh