Skip to content

Commit 91e51ee

Browse files
committed
Update versions to 2.0.3 in README file
1 parent ea72aeb commit 91e51ee

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -12,35 +12,35 @@ scoverage-maven-plugin is a plugin for Maven that integrates the scoverage code
1212

1313
mostly used mojos:
1414

15-
- **[check](http://scoverage.github.io/scoverage-maven-plugin/2.0.2/check-mojo.html)** goal compiles classes with instrumentation, runs unit tests and checks coverage,
15+
- **[check](http://scoverage.github.io/scoverage-maven-plugin/2.0.3/check-mojo.html)** goal compiles classes with instrumentation, runs unit tests and checks coverage,
1616

17-
- **[report](http://scoverage.github.io/scoverage-maven-plugin/2.0.2/report-mojo.html)** goal compiles classes with instrumentation, runs unit tests and generates reports,
17+
- **[report](http://scoverage.github.io/scoverage-maven-plugin/2.0.3/report-mojo.html)** goal compiles classes with instrumentation, runs unit tests and generates reports,
1818

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

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

2323
additional, sometimes useful, mojos:
2424

25-
- **[test](http://scoverage.github.io/scoverage-maven-plugin/2.0.2/test-mojo.html)** goal compiles classes with instrumentation and runs unit tests,
25+
- **[test](http://scoverage.github.io/scoverage-maven-plugin/2.0.3/test-mojo.html)** goal compiles classes with instrumentation and runs unit tests,
2626

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

29-
- **[check-only](http://scoverage.github.io/scoverage-maven-plugin/2.0.2/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).
29+
- **[check-only](http://scoverage.github.io/scoverage-maven-plugin/2.0.3/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).
3030

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

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

3535
internal mojos:
3636

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

3939
### Maven generated plugin documentation
4040

4141
| Version | Documentation |
4242
|----------|------------------------------------------------------------------------------------------|
43-
| `2.0.2` | [Plugin Info](http://scoverage.github.io/scoverage-maven-plugin/2.0.2/plugin-info.html) |
43+
| `2.0.3` | [Plugin Info](http://scoverage.github.io/scoverage-maven-plugin/2.0.3/plugin-info.html) |
4444
| `1.4.11` | [Plugin Info](http://scoverage.github.io/scoverage-maven-plugin/1.4.11/plugin-info.html) |
4545

4646
### Prerequisites / limitations
@@ -62,7 +62,7 @@ This can be set as project property.
6262
```xml
6363
<project>
6464
<properties>
65-
<scoverage.plugin.version>2.0.2</scoverage.plugin.version>
65+
<scoverage.plugin.version>2.0.3</scoverage.plugin.version>
6666
</properties>
6767
</project>
6868
```
@@ -298,9 +298,9 @@ Which reporting mojo should be selected:
298298

299299
| Reporting mojo | When |
300300
|------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
301-
| [report](http://scoverage.github.io/scoverage-maven-plugin/2.0.2/report-mojo.html) | When not using integration tests (most cases) |
302-
| [integration-report](http://scoverage.github.io/scoverage-maven-plugin/2.0.2/integration-report-mojo.html) | When using integration tests |
303-
| [report-only](http://scoverage.github.io/scoverage-maven-plugin/2.0.2/report-only-mojo.html) | When coverage data was already generated (usually by [check](http://scoverage.github.io/scoverage-maven-plugin/2.0.2/check-mojo.html) or [integration-check](http://scoverage.github.io/scoverage-maven-plugin/2.0.2/integration-check-mojo.html) mojo) |
301+
| [report](http://scoverage.github.io/scoverage-maven-plugin/2.0.3/report-mojo.html) | When not using integration tests (most cases) |
302+
| [integration-report](http://scoverage.github.io/scoverage-maven-plugin/2.0.3/integration-report-mojo.html) | When using integration tests |
303+
| [report-only](http://scoverage.github.io/scoverage-maven-plugin/2.0.3/report-only-mojo.html) | When coverage data was already generated (usually by [check](http://scoverage.github.io/scoverage-maven-plugin/2.0.3/check-mojo.html) or [integration-check](http://scoverage.github.io/scoverage-maven-plugin/2.0.3/integration-check-mojo.html) mojo) |
304304

305305
### Customizing code instrumentation
306306

0 commit comments

Comments
 (0)