mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-04-19 11:21:56 +02:00
allow to set excludedGroups on command line
This commit is contained in:
parent
61c8bce13c
commit
8ec221aa52
@ -94,7 +94,7 @@ on your shell:
|
||||
|
||||
```bash
|
||||
mvn test
|
||||
mvn test -Dgroups=flaky,slow
|
||||
mvn test -DexcludedGroups= -Dgroups=flaky,slow
|
||||
mvn test '-Dgroups=!slow'
|
||||
```
|
||||
|
||||
|
3
pom.xml
3
pom.xml
@ -7,6 +7,7 @@
|
||||
<name>ripme</name>
|
||||
<url>http://rip.rarchives.com</url>
|
||||
<properties>
|
||||
<excludedGroups>flaky</excludedGroups>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
<dependencyManagement>
|
||||
@ -145,7 +146,7 @@
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>3.0.0-M5</version>
|
||||
<configuration>
|
||||
<excludedGroups>flaky</excludedGroups>
|
||||
<excludedGroups>${excludedGroups}</excludedGroups>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
Loading…
x
Reference in New Issue
Block a user