Cucumber
Exclude tests that have a specific tag:
-Dcucumber.options='--tags ~@SomeTag'
Run tests that have one tag or the other:
-Dcucumber.options='--tags @SomeTag1,@SomeTag2'"
Exclude tests that have any of the specified tags:
-Dcucumber.options='--tags ~@SomeTag1 --tags ~@SomeTag2"