Examples of MavenShadowRepository


Examples of org.sonatype.nexus.proxy.maven.MavenShadowRepository

  @Override
  public boolean isMavenRepositorySupported(final MavenRepository mavenRepository)
      throws IllegalStateException
  {
    final MavenShadowRepository mavenShadowRepository = mavenRepository.adaptToFacet(MavenShadowRepository.class);
    if (mavenShadowRepository != null) {
      return false; // shadows unsupported
    }
    if (!Maven2ContentClass.ID.equals(mavenRepository.getRepositoryContentClass().getId())) {
      return false; // maven2 layout support only, no maven1 support
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.