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

com.jfrog.GradleDependencyNode Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package com.jfrog;

import java.util.HashSet;
import java.util.Set;

/**
 * @author yahavi
 **/
public class GradleDependencyNode {
    private final Set children = new HashSet<>();
    // The Gradle configuration such as compileJava, implementation, testImplementation, etc.
    private final Set configurations = new HashSet<>();
    private boolean unresolved;

    public GradleDependencyNode() {
    }

    public GradleDependencyNode(String configuration) {
        this.configurations.add(configuration);
    }

    public Set getChildren() {
        return children;
    }

    public Set getConfigurations() {
        return configurations;
    }

    public boolean isUnresolved() {
        return unresolved;
    }

    public void setUnresolved(boolean unresolved) {
        this.unresolved = unresolved;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy