private ImmutableList constructArtifacts()

in maven-plugin/src/main/java/com/spotify/missinglink/maven/CheckMojo.java [650:659]


  private ImmutableList<Artifact> constructArtifacts(
      List<org.apache.maven.artifact.Artifact> mavenDeps) {

    final List<Artifact> list =
        mavenDeps.stream()
            .filter(this::filterValidClasspathEntries)
            .map(this::mavenDepToArtifact)
            .collect(Collectors.toList());
    return ImmutableList.copyOf(list);
  }