Package org.sonatype.nexus.client.core.subsystem.repository.maven

Examples of org.sonatype.nexus.client.core.subsystem.repository.maven.MavenHostedRepository.withName()


    final MavenHostedRepository repository = repositories()
        .create(MavenHostedRepository.class, repositoryIdForTest())
        .save();

    final String name = repository.name();
    repository.withName("foo");
    repository.refresh();
    assertThat(repository.name(), is(name));
  }

  @Test
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.