Skip to content

Commit b24fd8d

Browse files
committed
Readme file actualization.
1 parent 2a7f848 commit b24fd8d

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,36 +15,36 @@ 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.1.1/check-mojo.html)** goal compiles classes with instrumentation, runs unit tests and checks coverage,
18+
- **[check](http://scoverage.github.io/scoverage-maven-plugin/1.2.0/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.1.1/report-mojo.html)** goal compiles classes with instrumentation, runs unit tests and generates reports,
20+
- **[report](http://scoverage.github.io/scoverage-maven-plugin/1.2.0/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.1.1/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.2.0/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.1.1/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.2.0/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.2.0-SNAPSHOT/test-mojo.html)** goal compiles classes with instrumentation and runs unit tests,
28+
- **[test](http://scoverage.github.io/scoverage-maven-plugin/1.2.0/test-mojo.html)** goal compiles classes with instrumentation and runs unit tests,
2929

30-
- **[integration-test](http://scoverage.github.io/scoverage-maven-plugin/1.2.0-SNAPSHOT/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.2.0/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.1.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).
32+
- **[check-only](http://scoverage.github.io/scoverage-maven-plugin/1.2.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).
3333

34-
- **[report-only](http://scoverage.github.io/scoverage-maven-plugin/1.1.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),
34+
- **[report-only](http://scoverage.github.io/scoverage-maven-plugin/1.2.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),
3535

36-
- **[package](http://scoverage.github.io/scoverage-maven-plugin/1.2.0-SNAPSHOT/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.2.0/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.1.1/pre-compile-mojo.html)** and **[post-compile](http://scoverage.github.io/scoverage-maven-plugin/1.1.1/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.2.0/pre-compile-mojo.html)** and **[post-compile](http://scoverage.github.io/scoverage-maven-plugin/1.2.0/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.1.1` | [Plugin Info](http://scoverage.github.io/scoverage-maven-plugin/1.1.1/plugin-info.html) |
47-
| `1.2.0-SNAPSHOT` | [Plugin Info](http://scoverage.github.io/scoverage-maven-plugin/1.2.0-SNAPSHOT/plugin-info.html) |
46+
| `1.2.0` | [Plugin Info](http://scoverage.github.io/scoverage-maven-plugin/1.2.0/plugin-info.html) |
47+
| `1.3.0-SNAPSHOT` | [Plugin Info](http://scoverage.github.io/scoverage-maven-plugin/1.3.0-SNAPSHOT/plugin-info.html) |
4848

4949
##### Prerequisities / limitations
5050

@@ -62,7 +62,7 @@ This can be set as project property.
6262
```xml
6363
<project>
6464
<properties>
65-
<scoverage.plugin.version>1.1.1</scoverage.plugin.version>
65+
<scoverage.plugin.version>1.2.0</scoverage.plugin.version>
6666
</properties>
6767
</project>
6868
```
@@ -75,7 +75,7 @@ Plugin supports Scala 2.10.x and 2.11.x versions by automatically loading and co
7575
```xml
7676
<project>
7777
<properties>
78-
<scala.version>2.11.7</scala.version>
78+
<scala.version>2.11.8</scala.version>
7979
</properties>
8080
</project>
8181
```
@@ -91,7 +91,7 @@ or
9191
<artifactId>scoverage-maven-plugin</artifactId>
9292
<version>${scoverage.plugin.version}</version>
9393
<configuration>
94-
<scalaVersion>2.11.7</scalaVersion>
94+
<scalaVersion>2.11.8</scalaVersion>
9595
<-- other parameters -->
9696
</configuration>
9797
</plugin>
@@ -123,7 +123,7 @@ It can be configured by defining `scalacPluginVersion` plugin configuration para
123123
```xml
124124
<project>
125125
<properties>
126-
<scoverage.scalacPluginVersion>1.1.1</scoverage.scalacPluginVersion>
126+
<scoverage.scalacPluginVersion>1.2.0</scoverage.scalacPluginVersion>
127127
</properties>
128128
</project>
129129
```
@@ -139,7 +139,7 @@ or
139139
<artifactId>scoverage-maven-plugin</artifactId>
140140
<version>${scoverage.plugin.version}</version>
141141
<configuration>
142-
<scalacPluginVersion>1.1.1</scalacPluginVersion>
142+
<scalacPluginVersion>1.2.0</scalacPluginVersion>
143143
<-- other parameters -->
144144
</configuration>
145145
</plugin>
@@ -238,9 +238,9 @@ Which reporting mojo should be selected:
238238

239239
| Reporting mojo | When |
240240
|----------------------|-----------------------------------------------|
241-
| [report](http://scoverage.github.io/scoverage-maven-plugin/1.1.1/report-mojo.html) | When not using integration tests (most cases) |
242-
| [integration-report](http://scoverage.github.io/scoverage-maven-plugin/1.1.1/integration-report-mojo.html) | When using integration tests |
243-
| [report-only](http://scoverage.github.io/scoverage-maven-plugin/1.1.1/report-only-mojo.html) | When coverage data was already generated (usually by [check](http://scoverage.github.io/scoverage-maven-plugin/1.1.1/check-mojo.html) or [integration-check](http://scoverage.github.io/scoverage-maven-plugin/1.1.1/integration-check-mojo.html) mojo) |
241+
| [report](http://scoverage.github.io/scoverage-maven-plugin/1.2.0/report-mojo.html) | When not using integration tests (most cases) |
242+
| [integration-report](http://scoverage.github.io/scoverage-maven-plugin/1.2.0/integration-report-mojo.html) | When using integration tests |
243+
| [report-only](http://scoverage.github.io/scoverage-maven-plugin/1.2.0/report-only-mojo.html) | When coverage data was already generated (usually by [check](http://scoverage.github.io/scoverage-maven-plugin/1.2.0/check-mojo.html) or [integration-check](http://scoverage.github.io/scoverage-maven-plugin/1.2.0/integration-check-mojo.html) mojo) |
244244

245245
##### Customizing code instrumentation
246246

@@ -344,7 +344,7 @@ Read [SBT SCoverage Plugin documentation](https://github.com/scoverage/sbt-scove
344344
</project>
345345
```
346346

347-
There are many [example projects](https://github.com/scoverage/scoverage-maven-samples/tree/scoverage-maven-samples-1.1.1/).
347+
There are many [example projects](https://github.com/scoverage/scoverage-maven-samples/tree/scoverage-maven-samples-1.2.0/).
348348
Go to one of them and run `mvn site`.
349349

350350
## License

0 commit comments

Comments
 (0)