Hi,

I just updated to CVS head of maven to take advantage of jvz's fix to
getDependencyPath, but now my tests that required <testResources> seem to
fail.  I am not getting the test resources copied into my
target/test-classes directory...

Here is my POM:
    <unitTestSourceDirectory>tests/test</unitTestSourceDirectory>
    
    
    <unitTest>
      <includes>
        <include>**/*Test.java</include>
        <include>**/Test*.java</include>
        
      </includes>
      <resources>
        <include>**/*.txt</include>
      </resources>
    </unitTest>
    
    <testResources>
      <testResource>
        <directory>tests/test</directory>
        <includes>
          <include>**/*.txt</include>
        </includes>
      </testResource>
    </testResources>

Has the POM format for testResources changed?

Eric Pugh
    

Reply via email to