Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update versions to 2.0.3 in README file #205

Merged
merged 1 commit into from
Feb 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,35 +12,35 @@ scoverage-maven-plugin is a plugin for Maven that integrates the scoverage code

mostly used mojos:

- **[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,
- **[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,

- **[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,
- **[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,

- **[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,
- **[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,

- **[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,
- **[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,

additional, sometimes useful, mojos:

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

- **[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,
- **[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,

- **[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).
- **[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).

- **[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),
- **[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),

- **[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),
- **[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),

internal mojos:

- **[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.
- **[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.

### Maven generated plugin documentation

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

### Prerequisites / limitations
Expand All @@ -62,7 +62,7 @@ This can be set as project property.
```xml
<project>
<properties>
<scoverage.plugin.version>2.0.2</scoverage.plugin.version>
<scoverage.plugin.version>2.0.3</scoverage.plugin.version>
</properties>
</project>
```
Expand Down Expand Up @@ -298,9 +298,9 @@ Which reporting mojo should be selected:

| Reporting mojo | When |
|------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [report](http://scoverage.github.io/scoverage-maven-plugin/2.0.2/report-mojo.html) | When not using integration tests (most cases) |
| [integration-report](http://scoverage.github.io/scoverage-maven-plugin/2.0.2/integration-report-mojo.html) | When using integration tests |
| [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) |
| [report](http://scoverage.github.io/scoverage-maven-plugin/2.0.3/report-mojo.html) | When not using integration tests (most cases) |
| [integration-report](http://scoverage.github.io/scoverage-maven-plugin/2.0.3/integration-report-mojo.html) | When using integration tests |
| [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) |

### Customizing code instrumentation

Expand Down
Loading