zed.mavenrepo.Repository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zed-deployer Show documentation
Show all versions of zed-deployer Show documentation
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