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

com.hubspot.maven.plugins.dependency.management.RequireManagement Maven / Gradle / Ivy

There is a newer version: 0.11
Show newest version
package com.hubspot.maven.plugins.dependency.management;

import java.util.ArrayList;
import java.util.List;

public class RequireManagement {
  private boolean dependencies = false;
  private boolean plugins = false;
  private boolean allowVersions = true;
  private boolean allowExclusions = true;
  private List exceptions = new ArrayList<>();

  public boolean requireDependencyManagement() {
    return dependencies;
  }

  public void setDependencies(boolean dependencies) {
    this.dependencies = dependencies;
  }

  public boolean requirePluginManagement() {
    return plugins;
  }

  public void setPlugins(boolean plugins) {
    this.plugins = plugins;
  }

  public boolean allowVersions() {
    return allowVersions;
  }

  public void setAllowVersions(boolean allowVersions) {
    this.allowVersions = allowVersions;
  }

  public boolean allowExclusions() {
    return allowExclusions;
  }

  public void setAllowExclusions(boolean allowExclusions) {
    this.allowExclusions = allowExclusions;
  }

  public List getExceptions() {
    return exceptions;
  }

  public void setExceptions(List exceptions) {
    this.exceptions = exceptions;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy