File tree 2 files changed +6
-1
lines changed
src/main/java/org/scoverage/plugin 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ under the License.
90
90
<maven .version>2.2.1</maven .version>
91
91
<maven-plugin-plugin .version>3.6.0</maven-plugin-plugin .version>
92
92
93
- <scalac-scoverage-plugin .version>1.4.0-SNAPSHOT </scalac-scoverage-plugin .version>
93
+ <scalac-scoverage-plugin .version>1.4.0-M5 </scalac-scoverage-plugin .version>
94
94
</properties >
95
95
96
96
<dependencies >
Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ public class SCoveragePreCompileMojo
82
82
* <li>if specified, and equals {@code 2.10} or starts with {@code 2.10.} - <b>{@code scalac-scoverage-plugin_2.10}</b> will be used</li>
83
83
* <li>if specified, and equals {@code 2.11} or starts with {@code 2.11.} - <b>{@code scalac-scoverage-plugin_2.11}</b> will be used</li>
84
84
* <li>if specified, and equals {@code 2.12} or starts with {@code 2.12.} - <b>{@code scalac-scoverage-plugin_2.12}</b> will be used</li>
85
+ * <li>if specified, and equals {@code 2.13.0-M5} - <b>{@code scalac-scoverage-plugin_2.13.0-M5}</b> will be used</li>
85
86
* <li>if specified, but does not meet any of the above conditions or if not specified - plugin execution will be skipped</li>
86
87
* </ul>
87
88
*
@@ -248,6 +249,10 @@ else if ( "2.12".equals( resolvedScalaVersion ) || resolvedScalaVersion.startsWi
248
249
{
249
250
scalaBinaryVersion = "2.12" ;
250
251
}
252
+ else if ( "2.13.0-M5" .equals ( resolvedScalaVersion ) )
253
+ {
254
+ scalaBinaryVersion = "2.13.0-M5" ;
255
+ }
251
256
else
252
257
{
253
258
getLog ().warn ( String .format ( "Skipping SCoverage execution - unsupported Scala version \" %s\" " ,
You can’t perform that action at this time.
0 commit comments