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

com.hubspot.maven.plugins.dependency.scope.DependencyViolation Maven / Gradle / Ivy

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

import org.apache.maven.model.Dependency;

public class DependencyViolation {
  private final TraversalContext source;
  private final Dependency dependency;

  public DependencyViolation(TraversalContext source, Dependency dependency) {
    this.source = source;
    this.dependency = dependency;
  }

  public TraversalContext getSource() {
    return source;
  }

  public Dependency getDependency() {
    return dependency;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy