Here's a simple shell script it took me forever to add to make it easier for me to run an integration test with Maven:
$ cat ~/bin/it #!/bin/bash mvn clean verify -Dit -Dit.test=$1I just have to remember the test name now instead of repeatedly typing the above:
$ it MyIntegrationSpec