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

org.whitesource.maven.utils.dependencies.AetherArtifact Maven / Gradle / Ivy

There is a newer version: 20.7.1
Show newest version
package org.whitesource.maven.utils.dependencies;

import java.io.File;

/**
 * Author: Itai Marko
 */
public interface AetherArtifact {

    String getGroupId();

    String getArtifactId();

    String getVersion();

    String getClassifier();

    String getProperty(String type, String s);

    File getFile();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy