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

com.jfrog.GradleDepTreeResults Maven / Gradle / Ivy

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

import java.util.Map;

public class GradleDepTreeResults {
    private String root;
    private Map nodes;

    // Empty constructor for deserialization
    @SuppressWarnings("unused")
    public GradleDepTreeResults() {
    }

    public GradleDepTreeResults(String root, Map nodes) {
        this.root = root;
        this.nodes = nodes;
    }

    public String getRoot() {
        return root;
    }

    public Map getNodes() {
        return nodes;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy