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

zed.mavenrepo.Repository Maven / Gradle / Ivy

Go to download

A application used as an example on how to set up pushing its components to the Central Repository.

The newest version!
package zed.mavenrepo;

public class Repository {

    private final String id;

    private final String url;

    public Repository(String id, String url) {
        this.id = id;
        this.url = url;
    }

    public static Repository mavenCentral() {
        return new Repository("mavenCentral", "https://repo1.maven.org/maven2");
    }

    public String id() {
        return id;
    }

    public String url() {
        return url;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy