File tree 2 files changed +5
-5
lines changed
src/main/java/org/scoverage/plugin
2 files changed +5
-5
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-RC1 </scalac-scoverage-plugin .version>
93
+ <scalac-scoverage-plugin .version>1.4.0</scalac-scoverage-plugin .version>
94
94
</properties >
95
95
96
96
<dependencies >
Original file line number Diff line number Diff line change @@ -82,7 +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-RC1 } - <b>{@code scalac-scoverage-plugin_2.13.0-RC1 }</b> will be used</li>
85
+ * <li>if specified, and equals {@code 2.13} or starts with {@code 2.13. } - <b>{@code scalac-scoverage-plugin_2.13}</b> will be used</li>
86
86
* <li>if specified, but does not meet any of the above conditions or if not specified - plugin execution will be skipped</li>
87
87
* </ul>
88
88
*
@@ -249,9 +249,9 @@ else if ( "2.12".equals( resolvedScalaVersion ) || resolvedScalaVersion.startsWi
249
249
{
250
250
scalaBinaryVersion = "2.12" ;
251
251
}
252
- else if ( "2.13.0-RC1 " .equals ( resolvedScalaVersion ) )
252
+ else if ( "2.13" .equals ( resolvedScalaVersion ) || resolvedScalaVersion . startsWith ( "2.13." ) )
253
253
{
254
- scalaBinaryVersion = "2.13.0-RC1 " ;
254
+ scalaBinaryVersion = "2.13" ;
255
255
}
256
256
else
257
257
{
@@ -538,4 +538,4 @@ private void saveSourceRootsToFile() throws IOException
538
538
}
539
539
}
540
540
541
- }
541
+ }
You can’t perform that action at this time.
0 commit comments