22
22
import java .io .FileOutputStream ;
23
23
import java .io .IOException ;
24
24
import java .io .OutputStreamWriter ;
25
+ import java .nio .charset .StandardCharsets ;
25
26
import java .util .*;
26
27
import java .util .stream .Collectors ;
28
+ import javax .inject .Inject ;
27
29
28
30
import org .apache .maven .artifact .Artifact ;
29
31
import org .apache .maven .artifact .factory .ArtifactFactory ;
30
32
import org .apache .maven .artifact .repository .ArtifactRepository ;
31
33
import org .apache .maven .artifact .resolver .ArtifactNotFoundException ;
32
34
import org .apache .maven .artifact .resolver .ArtifactResolutionException ;
33
35
import org .apache .maven .artifact .resolver .ArtifactResolver ;
34
- import org .apache .maven .artifact .versioning .ArtifactVersion ;
35
- import org .apache .maven .artifact .versioning .DefaultArtifactVersion ;
36
36
import org .apache .maven .execution .MavenSession ;
37
37
import org .apache .maven .model .Dependency ;
38
38
import org .apache .maven .plugin .AbstractMojo ;
39
39
import org .apache .maven .plugin .MojoExecutionException ;
40
- import org .apache .maven .plugins .annotations .Component ;
41
40
import org .apache .maven .plugins .annotations .LifecyclePhase ;
42
41
import org .apache .maven .plugins .annotations .Mojo ;
43
42
import org .apache .maven .plugins .annotations .Parameter ;
@@ -171,13 +170,13 @@ public class SCoveragePreCompileMojo
171
170
/**
172
171
* Artifact factory used to look up artifacts in the remote repository.
173
172
*/
174
- @ Component
173
+ @ Inject
175
174
private ArtifactFactory factory ;
176
175
177
176
/**
178
177
* Artifact resolver used to resolve artifacts.
179
178
*/
180
- @ Component
179
+ @ Inject
181
180
private ArtifactResolver resolver ;
182
181
183
182
/**
@@ -231,16 +230,16 @@ public void execute() throws MojoExecutionException
231
230
232
231
long ts = System .currentTimeMillis ();
233
232
234
- ScalaVersion resolvedScalaVersion = resolveScalaVersion ();
233
+ ScalaVersion scalaVersion = resolveScalaVersion ();
235
234
236
- if ( resolvedScalaVersion != null )
235
+ if ( scalaVersion != null )
237
236
{
238
- boolean supportedScalaVersion = resolvedScalaVersion .isScala2 () && resolvedScalaVersion .isAtLeast ( "2.12.8" ) ||
239
- resolvedScalaVersion .isAtLeast ( "3.2.0" );
237
+ boolean supportedScalaVersion = scalaVersion .isScala2 () && scalaVersion .isAtLeast ( "2.12.8" ) ||
238
+ scalaVersion .isAtLeast ( "3.2.0" );
240
239
if (!supportedScalaVersion )
241
240
{
242
241
getLog ().warn ( String .format ( "Skipping SCoverage execution - unsupported Scala version \" %s\" . Supported Scala versions are 2.12.8+, 2.13.0+ and 3.2.0+ ." ,
243
- resolvedScalaVersion .full ) );
242
+ scalaVersion .full ) );
244
243
return ;
245
244
}
246
245
}
@@ -277,17 +276,16 @@ public void execute() throws MojoExecutionException
277
276
278
277
try
279
278
{
280
- boolean scala2 = resolvedScalaVersion .isScala2 ();
279
+ boolean scala2 = scalaVersion .isScala2 ();
281
280
boolean filePackageExclusionSupportingScala3 =
282
- resolvedScalaVersion .isAtLeast ( "3.4.2" ) ||
281
+ scalaVersion .isAtLeast ( "3.4.2" ) ||
283
282
// backported to Scala 3.3 LTS
284
- ( resolvedScalaVersion .full .startsWith ( "3.3." ) && resolvedScalaVersion .isAtLeast ( "3.3.4" ) );
283
+ ( scalaVersion .full .startsWith ( "3.3." ) && scalaVersion .isAtLeast ( "3.3.4" ) );
285
284
286
- List <Artifact > pluginArtifacts = getScalaScoveragePluginArtifacts ( resolvedScalaVersion );
285
+ List <Artifact > pluginArtifacts = getScoveragePluginArtifacts ( scalaVersion );
287
286
if ( scala2 ) // Scala 3 doesn't need scalac-scoverage-runtime
288
287
{
289
- Artifact runtimeArtifact = getScalaScoverageRuntimeArtifact ( resolvedScalaVersion );
290
- addScoverageDependenciesToClasspath ( runtimeArtifact );
288
+ addScalacScoverageRuntimeDependencyToClasspath ( scalaVersion );
291
289
}
292
290
293
291
String arg = ( scala2 ? SCALA2_DATA_DIR_OPTION : SCALA3_COVERAGE_OUT_OPTION ) + dataDirectory .getAbsolutePath ();
@@ -445,55 +443,47 @@ private void setProperty( Properties projectProperties, String propertyName, Str
445
443
}
446
444
}
447
445
448
- private ArtifactVersion getScalacPluginVersion () {
449
- if ( scalacPluginVersion == null || scalacPluginVersion .isEmpty () ) {
446
+ private String getScalacPluginVersion () {
447
+ if ( StringUtils .isEmpty (scalacPluginVersion ) ) {
450
448
throw new IllegalStateException ("scalacPluginVersion is unset." );
451
449
} else if ( scalacPluginVersion .startsWith ("1." ) ) {
452
450
throw new IllegalStateException ( String .format ( "Unsupported scalacPluginVersion \" %s\" . Please use scalacPluginVersion 2.0.0+ or use older version of scoverage-maven-plugin" , scalacPluginVersion ) );
453
451
} else {
454
- return new DefaultArtifactVersion ( scalacPluginVersion ) ;
452
+ return scalacPluginVersion ;
455
453
}
456
454
}
457
455
458
- private List <Artifact > getScalaScoveragePluginArtifacts ( ScalaVersion resolvedScalaVersion )
456
+ private List <Artifact > getScoveragePluginArtifacts ( ScalaVersion scalaVersion )
459
457
throws ArtifactNotFoundException , ArtifactResolutionException
460
458
{
461
- String resolvedScalacPluginVersion = getScalacPluginVersion ().toString ();
462
459
List <Artifact > resolvedArtifacts = new ArrayList <>();
463
- if ( resolvedScalaVersion .isScala2 () ) // Scala 3 doesn't need scalac-scoverage-plugin
460
+ if ( scalaVersion .isScala2 () ) // Scala 3 doesn't need scalac-scoverage-plugin
464
461
{
465
- resolvedArtifacts .add (getResolvedArtifact ( "org.scoverage" , " scalac-scoverage-plugin_" + resolvedScalaVersion .full , resolvedScalacPluginVersion ));
462
+ resolvedArtifacts .add (resolveScoverageArtifact ( " scalac-scoverage-plugin_" + scalaVersion .full ));
466
463
}
467
- resolvedArtifacts .add (getResolvedArtifact ( "org.scoverage" , " scalac-scoverage-domain_" + resolvedScalaVersion .compatible , resolvedScalacPluginVersion ));
468
- resolvedArtifacts .add (getResolvedArtifact ( "org.scoverage" , " scalac-scoverage-serializer_" + resolvedScalaVersion .compatible , resolvedScalacPluginVersion ));
464
+ resolvedArtifacts .add (resolveScoverageArtifact ( " scalac-scoverage-domain_" + scalaVersion .compatible ));
465
+ resolvedArtifacts .add (resolveScoverageArtifact ( " scalac-scoverage-serializer_" + scalaVersion .compatible ));
469
466
return resolvedArtifacts ;
470
467
}
471
468
472
- private Artifact getScalaScoverageRuntimeArtifact ( ScalaVersion resolvedScalaVersion )
473
- throws ArtifactNotFoundException , ArtifactResolutionException
474
- {
475
- return getResolvedArtifact (
476
- "org.scoverage" , "scalac-scoverage-runtime_" + resolvedScalaVersion .compatible ,
477
- getScalacPluginVersion ().toString () );
478
- }
479
-
480
469
/**
481
470
* We need to tweak our test classpath for Scoverage.
482
- *
483
- * @throws MojoExecutionException
484
471
*/
485
- private void addScoverageDependenciesToClasspath ( Artifact scalaScoveragePluginArtifact )
486
- {
472
+ private void addScalacScoverageRuntimeDependencyToClasspath (ScalaVersion resolvedScalaVersion )
473
+ throws ArtifactResolutionException , ArtifactNotFoundException {
474
+
487
475
@ SuppressWarnings ( "unchecked" )
488
476
Set <Artifact > set = new LinkedHashSet <Artifact >( project .getDependencyArtifacts () );
489
- set .add ( scalaScoveragePluginArtifact );
477
+ set .add (resolveScoverageArtifact ( "scalac-scoverage-runtime_" + resolvedScalaVersion . compatible ) );
490
478
project .setDependencyArtifacts ( set );
491
479
}
492
480
493
- private Artifact getResolvedArtifact ( String groupId , String artifactId , String version )
481
+ private Artifact resolveScoverageArtifact ( String artifactId )
494
482
throws ArtifactNotFoundException , ArtifactResolutionException
495
483
{
496
- Artifact artifact = factory .createArtifact ( groupId , artifactId , version , Artifact .SCOPE_COMPILE , "jar" );
484
+ Artifact artifact = factory .createArtifact (
485
+ "org.scoverage" , artifactId , getScalacPluginVersion (), Artifact .SCOPE_COMPILE , "jar"
486
+ );
497
487
resolver .resolve ( artifact , remoteRepos , localRepo );
498
488
return artifact ;
499
489
}
@@ -510,7 +500,7 @@ private void saveSourceRootsToFile() throws IOException
510
500
}
511
501
File sourceRootsFile = new File ( dataDirectory , "source.roots" );
512
502
BufferedWriter writer = new BufferedWriter (
513
- new OutputStreamWriter ( new FileOutputStream ( sourceRootsFile ), "UTF-8" ) );
503
+ new OutputStreamWriter ( new FileOutputStream ( sourceRootsFile ), StandardCharsets . UTF_8 ) );
514
504
try
515
505
{
516
506
for ( String sourceRoot : sourceRoots )
0 commit comments