Last active
April 21, 2016 09:38
-
-
Save tomask-de/74c0a904f39d958d602f to your computer and use it in GitHub Desktop.
Install specified PHPUnit version to local Maven repository
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mvn install:install-file -Dfile=phpunit-4.3.phar \ | |
| -DgroupId=de.phpunit \ | |
| -DartifactId=PHPUnit \ | |
| -Dversion=4.3 \ | |
| -Dpackaging=phar \ | |
| -DgeneratePom=true \ | |
| -DcreateChecksum=true \ | |
| (-DlocalRepositoryPath=<path-to-repo>) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment