<br><br><div><span class="gmail_quote">On 1/16/06, <b class="gmail_sendername">DM Smith</b> <<a href="mailto:dmsmith555@yahoo.com">dmsmith555@yahoo.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Based on your and Andy's thoughts, I'll give it (Maven 2) a go, but on a<br>local copy. I'll report back here.<br><br>Some observations about Maven: it wants a particular directory structure<br>and it has the notion of sub-projects. Our directory structure is close
<br>though and we have implemented sub-projects as independent projects.</blockquote><div><br><br>I don't think maven2 does, maybe that's something that has changed since Maven1. Someone made a maven build file for dwr and configured it to use the existing directory structure.
<br><br>in pom.xml: <br><br><project><br> ....<br> <build><br> <sourceDirectory>java</sourceDirectory><br> <testSourceDirectory>test</testSourceDirectory><br> <extensions>
<br> ...<br> </extensions><br> <resources><br> <resource><br> <directory>java</directory><br> <includes><br> <include>**/*</include>
<br> </includes><br> <excludes><br> <exclude>**/*.java</exclude><br> <exclude>**/package.html</exclude><br> </excludes>
<br> </resource><br> </resources><br> ...<br> </build><br> ...<br></project><br><br>Joe.<br><br></div></div>