mirror of https://github.com/apache/maven.git
c0a6388337
occur as well as stdout and std err o there is a new parameter that is accepted so you can use a simplifed regex from the command line m2 surefire:test -D=test=FooTest is implicitly **/FooTest.java and the directory scanner is used so you can this to run a single test if you like or a set of tests: m2 surefire:test -Dtest=*Foo* is implicitly **/*Foo*.java You can also specify a comma separated list if you wish: m2 surefire:test -Dtest=*Foo*,*Bar* whic is implicitly **/*Foo*.java,**/*Bar*.java This just makes running a smaller set of tests easier while trying to pin point problems. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163120 13f79535-47bb-0310-9956-ffa450edef68 |
||
---|---|---|
benchmark | ||
maven-1.x-integration | ||
maven-artifact | ||
maven-core | ||
maven-core-it | ||
maven-core-it-support | ||
maven-core-it-verifier | ||
maven-mboot | ||
maven-mboot2 | ||
maven-meeper | ||
maven-model | ||
maven-plugin | ||
maven-plugin-loaders/maven-marmalade-loader | ||
maven-plugin-tools | ||
maven-plugins | ||
maven-repository-tools | ||
.cvsignore | ||
README.txt | ||
ci.sh | ||
m2-bootstrap-all.bat | ||
m2-bootstrap-all.sh | ||
mboot.jar | ||
pom.xml |
README.txt
------------------------------------------------------------------------------- Bootstrapping Maven ------------------------------------------------------------------------------- To bootstrap Maven you must have a ~/maven.properties file with the following entries: maven.home = /path/to/your/maven/installation maven.repo.local = /path/to/your/local/repository Once you have your ~/maven.properties setup then: java -jar mboot.jar Should do the trick to produce a working installation of Maven in ${maven.home}. NOTE: You must run these instructions from this directory! NOTE: If you want to run in offline mode where no downloading is done then add: 'maven.online = false' to your ~/maven.properties file.