
zed.mavenrepo.MavenDependencyResolutionException 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.
package zed.mavenrepo;
import org.sonatype.aether.resolution.DependencyResolutionException;
public class MavenDependencyResolutionException extends RuntimeException {
public MavenDependencyResolutionException(DependencyResolutionException cause) {
super(cause);
}
@Override
public synchronized DependencyResolutionException getCause() {
return (DependencyResolutionException) super.getCause();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy