Alex Karasulu wrote:
Ole Ersoy wrote:
It looks like it's complaining that one of the
templates it needs are missing from the directory it
expects the template to be in.

Maven reads the archetype descriptor archetype.xml,
and that's how it figures out what templates it needs.

In this case I'm guessing that:

'src/test/java/SchemaTest.java'
is defined like this in the archetype.xml descriptor:

  <sources>
    <source>src/test/java/SchemaTest.java</source>
  </sources>

  but it should be defined like this:

  <testSources>
    <source>src/test/java/SchemaTest.java</source>
  </testSources>


Good catch that was it.  I changed this here ...

  http://svn.apache.org/viewvc?view=rev&revision=437224

Thanks Ole!!!


Also got this one too.

    http://svn.apache.org/viewvc?view=rev&revision=437225

Thanks again,
Alex

Reply via email to