Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce usage of deprecated APIs #333

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 46 additions & 38 deletions src/main/java/org/scoverage/plugin/SCoveragePreCompileMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,6 @@
import java.util.stream.Collectors;
import javax.inject.Inject;

import org.apache.maven.artifact.Artifact;
import org.apache.maven.artifact.factory.ArtifactFactory;
import org.apache.maven.artifact.repository.ArtifactRepository;
import org.apache.maven.artifact.resolver.ArtifactNotFoundException;
import org.apache.maven.artifact.resolver.ArtifactResolutionException;
import org.apache.maven.artifact.resolver.ArtifactResolver;
import org.apache.maven.execution.MavenSession;
import org.apache.maven.model.Dependency;
import org.apache.maven.plugin.AbstractMojo;
Expand All @@ -43,6 +37,14 @@
import org.apache.maven.project.MavenProject;

import org.codehaus.plexus.util.StringUtils;
import org.eclipse.aether.artifact.Artifact;
import org.eclipse.aether.RepositorySystem;
import org.eclipse.aether.RepositorySystemSession;
import org.eclipse.aether.artifact.DefaultArtifact;
import org.eclipse.aether.repository.RemoteRepository;
import org.eclipse.aether.resolution.ArtifactRequest;
import org.eclipse.aether.resolution.ArtifactResolutionException;
import org.eclipse.aether.resolution.ArtifactResult;

/**
* Configures project for compilation with SCoverage instrumentation.
Expand Down Expand Up @@ -168,28 +170,16 @@ public class SCoveragePreCompileMojo
private List<MavenProject> reactorProjects;

/**
* Artifact factory used to look up artifacts in the remote repository.
* Repository system used to look up artifacts in the remote repository.
*/
@Inject
private ArtifactFactory factory;
private RepositorySystem repositorySystem;

/**
* Artifact resolver used to resolve artifacts.
*/
@Inject
private ArtifactResolver resolver;

/**
* Location of the local repository.
*/
@Parameter( property = "localRepository", readonly = true, required = true )
private ArtifactRepository localRepo;
@Parameter( defaultValue = "${repositorySystemSession}", readonly = true )
protected RepositorySystemSession repoSession;

/**
* Remote repositories used by the resolver
*/
@Parameter( property = "project.remoteArtifactRepositories", readonly = true, required = true )
private List<ArtifactRepository> remoteRepos;
@Parameter( defaultValue = "${project.remoteProjectRepositories}", readonly = true )
protected List<RemoteRepository> remoteRepos;

/**
* Configures project for compilation with SCoverage instrumentation.
Expand Down Expand Up @@ -357,7 +347,7 @@ public void execute() throws MojoExecutionException

saveSourceRootsToFile();
}
catch (ArtifactNotFoundException | ArtifactResolutionException | IOException e )
catch ( ArtifactResolutionException | IOException e )
{
throw new MojoExecutionException( "SCoverage preparation failed", e );
}
Expand Down Expand Up @@ -447,8 +437,7 @@ private String getScalacPluginVersion() {
}

private List<Artifact> getScoveragePluginArtifacts(ScalaVersion scalaVersion )
throws ArtifactNotFoundException, ArtifactResolutionException
{
throws ArtifactResolutionException {
List<Artifact> resolvedArtifacts = new ArrayList<>();
if ( scalaVersion.isScala2() ) // Scala 3 doesn't need scalac-scoverage-plugin
{
Expand All @@ -462,22 +451,41 @@ private List<Artifact> getScoveragePluginArtifacts(ScalaVersion scalaVersion )
/**
* We need to tweak our test classpath for Scoverage.
*/
@SuppressWarnings( "deprecation" ) // didn't find a good way to do this with Aether artifacts
private void addScalacScoverageRuntimeDependencyToClasspath(ScalaVersion resolvedScalaVersion )
throws ArtifactResolutionException, ArtifactNotFoundException {
throws ArtifactResolutionException {

Set<Artifact> set = new LinkedHashSet<>(project.getDependencyArtifacts());
set.add(resolveScoverageArtifact( "scalac-scoverage-runtime_" + resolvedScalaVersion.compatible) );
project.setDependencyArtifacts( set );
Set<org.apache.maven.artifact.Artifact> set = new LinkedHashSet<>(project.getDependencyArtifacts());
set.add(toMavenClasspathArtifact(
resolveScoverageArtifact("scalac-scoverage-runtime_" + resolvedScalaVersion.compatible)
));
project.setDependencyArtifacts( set);
}

private Artifact resolveScoverageArtifact( String artifactId )
throws ArtifactNotFoundException, ArtifactResolutionException
{
Artifact artifact = factory.createArtifact(
"org.scoverage", artifactId, getScalacPluginVersion(), Artifact.SCOPE_COMPILE, "jar"
private org.apache.maven.artifact.Artifact toMavenClasspathArtifact( Artifact artifact ) {
org.apache.maven.artifact.handler.DefaultArtifactHandler artifactHandler =
new org.apache.maven.artifact.handler.DefaultArtifactHandler( artifact.getExtension() );
artifactHandler.setAddedToClasspath(true);
return new org.apache.maven.artifact.DefaultArtifact(
artifact.getGroupId(),
artifact.getArtifactId(),
artifact.getVersion(),
org.apache.maven.artifact.Artifact.SCOPE_COMPILE,
artifact.getExtension(),
artifact.getClassifier(),
artifactHandler
);
resolver.resolve( artifact, remoteRepos, localRepo );
return artifact;
}

private Artifact resolveScoverageArtifact( String artifactId )
throws ArtifactResolutionException {

ArtifactRequest request = new ArtifactRequest();
request.setArtifact( new DefaultArtifact("org.scoverage", artifactId, "jar", getScalacPluginVersion()) );
request.setRepositories(remoteRepos);

ArtifactResult result = repositorySystem.resolveArtifact(repoSession, request);
return result.getArtifact();
}

private void saveSourceRootsToFile() throws IOException
Expand Down