All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.itemis.maven.plugins.unleash.steps.checks.CheckPluginVersions Maven / Gradle / Ivy

Go to download

This plugin provides a generic alternative to the error-prone default release plugin provided by Maven. It is designed to require a minimal effort of work for releasing modules and being extensible to integrate in every project setup.

There is a newer version: 2.10.0
Show newest version
package com.itemis.maven.plugins.unleash.steps.checks;

import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.Map.Entry;
import java.util.Objects;
import java.util.Set;

import javax.inject.Inject;
import javax.inject.Named;

import org.apache.maven.model.Build;
import org.apache.maven.model.BuildBase;
import org.apache.maven.model.Plugin;
import org.apache.maven.model.PluginManagement;
import org.apache.maven.model.Profile;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugin.descriptor.PluginDescriptor;
import org.apache.maven.project.MavenProject;

import com.google.common.collect.Collections2;
import com.google.common.collect.HashMultimap;
import com.google.common.collect.Multimap;
import com.google.common.collect.Sets;
import com.itemis.maven.plugins.cdi.CDIMojoProcessingStep;
import com.itemis.maven.plugins.cdi.ExecutionContext;
import com.itemis.maven.plugins.cdi.annotations.ProcessingStep;
import com.itemis.maven.plugins.cdi.logging.Logger;
import com.itemis.maven.plugins.unleash.util.ReleaseUtil;
import com.itemis.maven.plugins.unleash.util.functions.PluginToString;
import com.itemis.maven.plugins.unleash.util.functions.ProjectToString;
import com.itemis.maven.plugins.unleash.util.predicates.IsSnapshotPlugin;

/**
 * Checks that none of the project modules references SNAPSHOT plugins since this would potentially lead to
 * non-reproducible release artifacts.
 *
 * @author Stanley Hillner
 * @since 1.0.0
 */
@ProcessingStep(id = "checkPlugins", description = "Checks that the projects do not use SNAPSHOT plugins to avoid unreproducible release aritfacts.", requiresOnline = false)
public class CheckPluginVersions implements CDIMojoProcessingStep {
  @Inject
  private Logger log;
  @Inject
  @Named("reactorProjects")
  private List reactorProjects;
  @Inject
  private PluginDescriptor pluginDescriptor;

  @Override
  public void execute(ExecutionContext context) throws MojoExecutionException, MojoFailureException {
    this.log.info("Checking that none of the reactor projects contains SNAPSHOT plugins.");

    Multimap snapshotsByProject = HashMultimap.create();
    for (MavenProject project : this.reactorProjects) {
      this.log.debug("\tChecking plugins of reactor project '" + ProjectToString.INSTANCE.apply(project) + "':");
      snapshotsByProject.putAll(project, getSnapshotsFromManagement(project));
      snapshotsByProject.putAll(project, getSnapshots(project));
      snapshotsByProject.putAll(project, getSnapshotsFromAllProfiles(project));

      removePluginForIntegrationTests(snapshotsByProject);
    }

    if (!snapshotsByProject.values().isEmpty()) {
      this.log.error(
          "\tThere are references to SNAPSHOT plugins! The following list contains all SNAPSHOT plugins grouped by module:");
      for (MavenProject project : snapshotsByProject.keySet()) {
        Collection snapshots = snapshotsByProject.get(project);
        if (!snapshots.isEmpty()) {
          this.log.error("\t\t[PROJECT] " + ProjectToString.INSTANCE.apply(project));
          for (String plugin : snapshots) {
            this.log.error("\t\t\t[PLUGIN] " + plugin);
          }
        }
      }
      throw new MojoFailureException("The project cannot be released due to one or more SNAPSHOT plugins!");
    }
  }

  private Set getSnapshotsFromManagement(MavenProject project) {
    this.log.debug("\t\tChecking managed plugins");
    Build build = project.getBuild();
    if (build != null) {
      PluginManagement pluginManagement = build.getPluginManagement();
      if (pluginManagement != null) {
        Collection snapshots = Collections2.filter(pluginManagement.getPlugins(), IsSnapshotPlugin.INSTANCE);
        return Sets.newHashSet(Collections2.transform(snapshots, PluginToString.INSTANCE));
      }
    }
    return Collections.emptySet();
  }

  private Set getSnapshots(MavenProject project) {
    this.log.debug("\t\tChecking direct plugin references");
    Build build = project.getBuild();
    if (build != null) {
      Collection snapshots = Collections2.filter(build.getPlugins(), IsSnapshotPlugin.INSTANCE);
      return Sets.newHashSet(Collections2.transform(snapshots, PluginToString.INSTANCE));
    }
    return Collections.emptySet();
  }

  private Set getSnapshotsFromAllProfiles(MavenProject project) {
    Set snapshots = Sets.newHashSet();
    List profiles = project.getModel().getProfiles();
    if (profiles != null) {
      for (Profile profile : profiles) {
        snapshots.addAll(getSnapshotsFromManagement(profile));
        snapshots.addAll(getSnapshots(profile));
      }
    }
    return snapshots;
  }

  private Set getSnapshotsFromManagement(Profile profile) {
    this.log.debug("\t\tChecking managed plugins of profile '" + profile.getId() + "'");
    BuildBase build = profile.getBuild();
    if (build != null) {
      PluginManagement pluginManagement = build.getPluginManagement();
      if (pluginManagement != null) {
        Collection snapshots = Collections2.filter(pluginManagement.getPlugins(), IsSnapshotPlugin.INSTANCE);
        return Sets.newHashSet(Collections2.transform(snapshots, PluginToString.INSTANCE));
      }
    }
    return Collections.emptySet();
  }

  private Set getSnapshots(Profile profile) {
    this.log.debug("\t\tChecking direct plugin references of profile '" + profile.getId() + "'");
    BuildBase build = profile.getBuild();
    if (build != null) {
      Collection snapshots = Collections2.filter(build.getPlugins(), IsSnapshotPlugin.INSTANCE);
      return Sets.newHashSet(Collections2.transform(snapshots, PluginToString.INSTANCE));
    }
    return Collections.emptySet();
  }

  // Removes the unleash plugin itself from the list of violating dependencies if the integration test mode is enabled.
  private void removePluginForIntegrationTests(Multimap snapshotsByProject) {
    if (ReleaseUtil.isIntegrationtest()) {
      for (Iterator> i = snapshotsByProject.entries().iterator(); i.hasNext();) {
        Entry entry = i.next();
        if (Objects.equals(entry.getValue(), PluginToString.INSTANCE.apply(this.pluginDescriptor.getPlugin()))) {
          i.remove();
        }
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy