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

com.github.janssk1.maven.plugin.graph.domain.MockArtifact Maven / Gradle / Ivy

There is a newer version: 1.5
Show newest version
package com.github.janssk1.maven.plugin.graph.domain;

import java.util.Collections;
import java.util.List;

/**
 * User: janssk1
 * Date: 8/14/11
 * Time: 12:36 AM
 */
public class MockArtifact implements Artifact {

    public List getDependencyManagerDependencies() {
        return Collections.emptyList();
    }

    public List getDependencies() {
        return Collections.emptyList();
    }

    public long getSize() {
        return 0;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy