Skip to content

Commit f9bde40

Browse files
committed
Update versions in README file
1 parent dfa4e10 commit f9bde40

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

README.md

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

1616
mostly used mojos:
1717

18-
- **[check](http://scoverage.github.io/scoverage-maven-plugin/1.4.0/check-mojo.html)** goal compiles classes with instrumentation, runs unit tests and checks coverage,
18+
- **[check](http://scoverage.github.io/scoverage-maven-plugin/1.4.11/check-mojo.html)** goal compiles classes with instrumentation, runs unit tests and checks coverage,
1919

20-
- **[report](http://scoverage.github.io/scoverage-maven-plugin/1.4.0/report-mojo.html)** goal compiles classes with instrumentation, runs unit tests and generates reports,
20+
- **[report](http://scoverage.github.io/scoverage-maven-plugin/1.4.11/report-mojo.html)** goal compiles classes with instrumentation, runs unit tests and generates reports,
2121

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

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

2626
additional, sometimes useful, mojos:
2727

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

30-
- **[integration-test](http://scoverage.github.io/scoverage-maven-plugin/1.4.0/integration-test-mojo.html)** goal compiles classes with instrumentation and runs unit and integration tests,
30+
- **[integration-test](http://scoverage.github.io/scoverage-maven-plugin/1.4.11/integration-test-mojo.html)** goal compiles classes with instrumentation and runs unit and integration tests,
3131

32-
- **[check-only](http://scoverage.github.io/scoverage-maven-plugin/1.4.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).
32+
- **[check-only](http://scoverage.github.io/scoverage-maven-plugin/1.4.11/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).
3333

34-
- **[report-only](http://scoverage.github.io/scoverage-maven-plugin/1.4.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),
34+
- **[report-only](http://scoverage.github.io/scoverage-maven-plugin/1.4.11/report-only-mojo.html)** goal generates reports using coverage data generated earlier in the build (by **test**, **check**, **integration-test** or **integration-check** goal),
3535

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

3838
internal mojos:
3939

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

4242
Maven generated plugin documentation:
4343

4444
| Version | Documentation |
4545
|------------------|--------------------------------------------------------------------------------------------------|
46-
| `1.4.0` | [Plugin Info](http://scoverage.github.io/scoverage-maven-plugin/1.4.0/plugin-info.html) |
46+
| `1.4.11` | [Plugin Info](http://scoverage.github.io/scoverage-maven-plugin/1.4.11/plugin-info.html) |
4747

4848
##### Prerequisities / limitations
4949

@@ -61,7 +61,7 @@ This can be set as project property.
6161
```xml
6262
<project>
6363
<properties>
64-
<scoverage.plugin.version>1.4.0</scoverage.plugin.version>
64+
<scoverage.plugin.version>1.4.11</scoverage.plugin.version>
6565
</properties>
6666
</project>
6767
```
@@ -74,7 +74,7 @@ Plugin supports Scala 2.10.x, 2.11.x, 2.12.x and 2.13.x versions by automaticall
7474
```xml
7575
<project>
7676
<properties>
77-
<scala.version>2.13.0</scala.version>
77+
<scala.version>2.13.8</scala.version>
7878
</properties>
7979
</project>
8080
```
@@ -90,7 +90,7 @@ or
9090
<artifactId>scoverage-maven-plugin</artifactId>
9191
<version>${scoverage.plugin.version}</version>
9292
<configuration>
93-
<scalaVersion>2.13.0</scalaVersion>
93+
<scalaVersion>2.13.8</scalaVersion>
9494
<!-- other parameters -->
9595
</configuration>
9696
</plugin>
@@ -122,7 +122,7 @@ It can be configured by defining `scalacPluginVersion` plugin configuration para
122122
```xml
123123
<project>
124124
<properties>
125-
<scoverage.scalacPluginVersion>1.4.0</scoverage.scalacPluginVersion>
125+
<scoverage.scalacPluginVersion>1.4.11</scoverage.scalacPluginVersion>
126126
</properties>
127127
</project>
128128
```
@@ -138,7 +138,7 @@ or
138138
<artifactId>scoverage-maven-plugin</artifactId>
139139
<version>${scoverage.plugin.version}</version>
140140
<configuration>
141-
<scalacPluginVersion>1.4.0</scalacPluginVersion>
141+
<scalacPluginVersion>1.4.11</scalacPluginVersion>
142142
<!-- other parameters -->
143143
</configuration>
144144
</plugin>
@@ -292,9 +292,9 @@ Which reporting mojo should be selected:
292292

293293
| Reporting mojo | When |
294294
|----------------------|-----------------------------------------------|
295-
| [report](http://scoverage.github.io/scoverage-maven-plugin/1.4.0/report-mojo.html) | When not using integration tests (most cases) |
296-
| [integration-report](http://scoverage.github.io/scoverage-maven-plugin/1.4.0/integration-report-mojo.html) | When using integration tests |
297-
| [report-only](http://scoverage.github.io/scoverage-maven-plugin/1.4.0/report-only-mojo.html) | When coverage data was already generated (usually by [check](http://scoverage.github.io/scoverage-maven-plugin/1.4.0/check-mojo.html) or [integration-check](http://scoverage.github.io/scoverage-maven-plugin/1.4.0/integration-check-mojo.html) mojo) |
295+
| [report](http://scoverage.github.io/scoverage-maven-plugin/1.4.11/report-mojo.html) | When not using integration tests (most cases) |
296+
| [integration-report](http://scoverage.github.io/scoverage-maven-plugin/1.4.11/integration-report-mojo.html) | When using integration tests |
297+
| [report-only](http://scoverage.github.io/scoverage-maven-plugin/1.4.11/report-only-mojo.html) | When coverage data was already generated (usually by [check](http://scoverage.github.io/scoverage-maven-plugin/1.4.11/check-mojo.html) or [integration-check](http://scoverage.github.io/scoverage-maven-plugin/1.4.11/integration-check-mojo.html) mojo) |
298298

299299
##### Customizing code instrumentation
300300

@@ -458,14 +458,14 @@ If you want to set multiple properties from within `<additionalForkedProjectProp
458458

459459
## Examples
460460

461-
There are many [example projects](https://github.com/scoverage/scoverage-maven-samples/tree/scoverage-maven-samples-1.4.0/).
461+
There are many [example projects](https://github.com/scoverage/scoverage-maven-samples/tree/scoverage-maven-samples-1.4.11/).
462462
Go to one of them and run `mvn site`.
463463

464464
## License
465465
```
466466
This software is licensed under the Apache 2 license, quoted below.
467467
468-
Copyright 2014-2019 Grzegorz Slowikowski
468+
Copyright 2014-2022 Grzegorz Slowikowski
469469
470470
Licensed under the Apache License, Version 2.0 (the "License"); you may not
471471
use this file except in compliance with the License. You may obtain a copy of

0 commit comments

Comments
 (0)