Skip to content

Commit 5083983

Browse files
committed
Update versions to 2.0.0 in README file
1 parent e63edca commit 5083983

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,35 +14,35 @@ scoverage-maven-plugin is a plugin for Maven that integrates the scoverage code
1414

1515
mostly used mojos:
1616

17-
- **[check](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/check-mojo.html)** goal compiles classes with instrumentation, runs unit tests and checks coverage,
17+
- **[check](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/check-mojo.html)** goal compiles classes with instrumentation, runs unit tests and checks coverage,
1818

19-
- **[report](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/report-mojo.html)** goal compiles classes with instrumentation, runs unit tests and generates reports,
19+
- **[report](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/report-mojo.html)** goal compiles classes with instrumentation, runs unit tests and generates reports,
2020

21-
- **[integration-check](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/integration-check-mojo.html)** goal compiles classes with instrumentation, runs unit and integration tests and checks coverage,
21+
- **[integration-check](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/integration-check-mojo.html)** goal compiles classes with instrumentation, runs unit and integration tests and checks coverage,
2222

23-
- **[integration-report](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/integration-report-mojo.html)** goal compiles classes with instrumentation, runs unit and integration tests and generates reports,
23+
- **[integration-report](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/integration-report-mojo.html)** goal compiles classes with instrumentation, runs unit and integration tests and generates reports,
2424

2525
additional, sometimes useful, mojos:
2626

27-
- **[test](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/test-mojo.html)** goal compiles classes with instrumentation and runs unit tests,
27+
- **[test](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/test-mojo.html)** goal compiles classes with instrumentation and runs unit tests,
2828

29-
- **[integration-test](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/integration-test-mojo.html)** goal compiles classes with instrumentation and runs unit and integration tests,
29+
- **[integration-test](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/integration-test-mojo.html)** goal compiles classes with instrumentation and runs unit and integration tests,
3030

31-
- **[check-only](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/check-only-mojo.html)** goal only checks coverage using coverage data generated earlier in the build (by **test**, **report**, **integration-test** or **integration-report** goal).
31+
- **[check-only](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/check-only-mojo.html)** goal only checks coverage using coverage data generated earlier in the build (by **test**, **report**, **integration-test** or **integration-report** goal).
3232

33-
- **[report-only](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/report-only-mojo.html)** goal generates reports using coverage data generated earlier in the build (by **test**, **check**, **integration-test** or **integration-check** goal),
33+
- **[report-only](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/report-only-mojo.html)** goal generates reports using coverage data generated earlier in the build (by **test**, **check**, **integration-test** or **integration-check** goal),
3434

35-
- **[package](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/package-mojo.html)** goal generates artifact file containing instrumented classes (e.g. for testing outside of the Maven build),
35+
- **[package](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/package-mojo.html)** goal generates artifact file containing instrumented classes (e.g. for testing outside of the Maven build),
3636

3737
internal mojos:
3838

39-
- **[pre-compile](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/pre-compile-mojo.html)** and **[post-compile](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/post-compile-mojo.html)** are internal goals, they configure Maven build in forked `scoverage` life cycle; don't use them.
39+
- **[pre-compile](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/pre-compile-mojo.html)** and **[post-compile](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/post-compile-mojo.html)** are internal goals, they configure Maven build in forked `scoverage` life cycle; don't use them.
4040

4141
Maven generated plugin documentation:
4242

4343
| Version | Documentation |
4444
|---------------|-----------------------------------------------------------------------------------------------|
45-
| `2.0.0` | [Plugin Info](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/plugin-info.html) |
45+
| `2.0.1` | [Plugin Info](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/plugin-info.html) |
4646
| `1.4.11` | [Plugin Info](http://scoverage.github.io/scoverage-maven-plugin/1.4.11/plugin-info.html) |
4747

4848
##### Prerequisites / limitations
@@ -61,7 +61,7 @@ This can be set as project property.
6161
```xml
6262
<project>
6363
<properties>
64-
<scoverage.plugin.version>2.0.0</scoverage.plugin.version>
64+
<scoverage.plugin.version>2.0.1</scoverage.plugin.version>
6565
</properties>
6666
</project>
6767
```
@@ -295,9 +295,9 @@ Which reporting mojo should be selected:
295295

296296
| Reporting mojo | When |
297297
|------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
298-
| [report](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/report-mojo.html) | When not using integration tests (most cases) |
299-
| [integration-report](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/integration-report-mojo.html) | When using integration tests |
300-
| [report-only](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/report-only-mojo.html) | When coverage data was already generated (usually by [check](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/check-mojo.html) or [integration-check](http://scoverage.github.io/scoverage-maven-plugin/2.0.0/integration-check-mojo.html) mojo) |
298+
| [report](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/report-mojo.html) | When not using integration tests (most cases) |
299+
| [integration-report](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/integration-report-mojo.html) | When using integration tests |
300+
| [report-only](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/report-only-mojo.html) | When coverage data was already generated (usually by [check](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/check-mojo.html) or [integration-check](http://scoverage.github.io/scoverage-maven-plugin/2.0.1/integration-check-mojo.html) mojo) |
301301

302302
##### Customizing code instrumentation
303303

0 commit comments

Comments
 (0)