I am trying to apply maven to an existing project which already has a directory structure in place. All I can find from previous question is the following.
However, my requirement is more detailed. Please see below for the directory structure:
<root dir>
|
+--src-java
|
+--src-properties
|
+--WEB-INF
I know we could have something like
<build>
<sourceDirectory>src-java</sourceDirectory>
...
</build>
But sourceDirectory
is for JAVA source code only, if I'm not mistaken.
For the above structure, how do I declare it in pom.xml
? Moving the directory is my last option right now.