First off, I don't use maven-ant-tasks, so I have no idea if this is helpful or not...
> BUILD FAILED > /opt/devel/test/build.xml:4: Problem: failed to create task or type > antlib:org.apache.maven.artifact.ant:remoteRepository > Cause: The name is undefined. This suggests to me that line 4 in your build.xml has an issue, something related to your declaration of remoteRepository, specifically that you have not declared a valid "name" attribute. > --- build.xml > <?xml version="1.0" ?> > > <project name="Test" default="help" basedir="." > xmlns:artifact="antlib:org.apache.maven.artifact.ant"> > <artifact:remoteRepository id="my.repository" > url="http://example.com"> I'd try adding name="blah" after id="..." and url="..." and see if that does anything. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
