use of org.hibernate.boot.archive.scan.spi.ScanResult in project hibernate-orm by hibernate.
the class JarVisitorTest method testZippedJar.
@Test
public void testZippedJar() throws Exception {
File defaultPar = buildDefaultPar();
addPackageToClasspath(defaultPar);
ScanResult result = standardScan(defaultPar.toURL());
validateResults(result, org.hibernate.jpa.test.pack.defaultpar.ApplicationServer.class, Version.class);
}
Aggregations