Skip to content

Commit b712724

Browse files
authored
Update README.md
1 parent 6ad5df6 commit b712724

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ https://plugins.gradle.org/plugin/com.github.m-tanigt.jtdog
1010
Using the [plugins DSL](https://docs.gradle.org/current/userguide/plugins.html#sec:plugins_block):
1111
```groovy
1212
plugins {
13-
id 'com.github.m-tanigt.jtdog' version '1.0.3'
13+
id 'com.github.m-tanigt.jtdog' version '1.1.0'
1414
}
1515
```
1616

@@ -23,7 +23,7 @@ buildscript {
2323
}
2424
}
2525
dependencies {
26-
classpath "gradle.plugin.com.github.m-tanigt:jtdog-plugin:1.0.3"
26+
classpath "gradle.plugin.com.github.m-tanigt:jtdog-plugin:1.1.0"
2727
}
2828
}
2929
@@ -42,7 +42,7 @@ The detection results are output as a JSON file in the `out` directory.
4242
```groovy
4343
sniff {
4444
junitVersion = 4
45-
rerunsFailure = 10
45+
rerunTimes = 10
4646
runsInRondomOrder = 10
4747
detectStaticSmells = false
4848
outputDirectory = "out"
@@ -51,7 +51,7 @@ sniff {
5151
| Property | Type | Description |
5252
|----------|------|-------------|
5353
| `junitVersion` | `integer` | The JUnit version you use. Default to `4`. You can use JUnit5 by setting the value of this property to `5`. If you are using JUnit3, set it to `4` (because JUnit4 runner can run JUnit3 test).|
54-
| `rerunsFailure` | `integer` | Number of times to rerun a failed test. Default to `10`.|
54+
| `rerunTimes` | `integer` | Number of times to rerun tests. Default to `10`.|
5555
| `runsInRondomOrder` | `integer` | Number of times to run tests in random order. Default to `10`.|
5656
| `detectStaticSmells` | `boolean` | Whether to detect static test smells. Default to `false`|
5757
| `outputDirectory` | `String` | Name of the directory to output results. Default to `"out"`|

0 commit comments

Comments
 (0)