Package org.sonatype.nexus.proxy.repository

Examples of org.sonatype.nexus.proxy.repository.InvalidGroupingException


  @Override
  protected void validateMemberRepository(final Repository repository)
      throws InvalidGroupingException
  {
    if (repository.getRepositoryKind().isFacetAvailable(P2CompositeGroupRepository.class)) {
      throw new InvalidGroupingException(String.format(
          "Repository '%s' cannot be grouped as P2 composite groups are not supported as members of P2 legacy groups",
          repository.getName()
      ));
    }
    super.validateMemberRepository(repository);
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.proxy.repository.InvalidGroupingException

Copyright © 2018 www.massapicom. 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.