I downloaded the newest CVS; When I bootstaped Maven, it doesn't give me any plugins,
hence no options on goals.
I made my maven_home, and also put it in the %maven_home%\bin path then I ran:
ant -f build-bootstrap.xml
When I build it I get this in the middle of the build:
[exec] test:test:
[exec] [junit] dir attribute ignored if running in the same VM
[exec] [junit] Running org.apache.maven.project.WorkspaceMapperTest
[exec] [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 1.23
4 sec
[exec] [junit] [ERROR] TEST org.apache.maven.project.WorkspaceMapperTes
t FAILED
[exec] [junit] dir attribute ignored if running in the same VM
[exec] [junit] Running org.apache.maven.reactor.DependencyResolverTest
[exec] [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 1.07
8 sec
[exec] [junit] [ERROR] TEST org.apache.maven.reactor.DependencyResolver
Test FAILED
[exec] [ERROR] BUILD FAILED
[exec] [ERROR] File...... D:\jakarta-turbine-maven\maven.xml
[exec] [ERROR] Element... maven:maven
[exec] [ERROR] Line...... 28
[exec] [ERROR] Column.... 9
[exec] [ERROR] Unable to obtain goal [plugin] -- There were test failures.
File: D:\jakarta-turbine-maven\plugins\test\plugin.jelly At tag <fail>: line: 10
8 column: 52
[exec] Total time: 1 minutes 9 seconds
Here is what's at that line number for maven.xml:
<goal name="maven:reactor-install">
<maven:maven
basedir="${maven.src.dir}/plugins-build/reactor"
descriptor="${maven.src.dir}/plugins-build/reactor/project.xml"
goals="clean,plugin"
ignoreFailures="false"
/>
Here is the one for plugin.jelly:
<j:if test="${maven.test.failure}">
<fail message="There were test failures."/>
</j:if>
I looked at the reports that it gives and they don't have errors in them...How can I
find out about the tests, like the two that gave me errors? There is nothing in the
maven.log either. Could someone point me in the right direction?
Thanks!