Package aQute.bnd.service

Examples of aQute.bnd.service.RepositoryPlugin.versions()


    httpd.stop();
  }

  public void testVersionsBadBsn() throws Exception {
    RepositoryPlugin repo = createRepo();
    SortedSet<Version> versions = repo.versions("foo.bar.foobar");

    assertNull(versions);
  }

  public void testVersionsGAVStyle() throws Exception {
View Full Code Here


    assertNull(versions);
  }

  public void testVersionsGAVStyle() throws Exception {
    RepositoryPlugin repo = createRepo();
    SortedSet<Version> versions = repo.versions("javax.servlet:servlet-api");

    assertNotNull(versions);
    assertTrue(versions.size() == 2);
    assertEquals("2.4.0", versions.first().toString());
    assertEquals("2.5.0", versions.last().toString());
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.