throw new IllegalStateException("Project artifact has not been generated: " + archiveFile.getAbsolutePath());
}
Archive<?> archive = ShrinkWrap.create(type, archiveName).as(ZipImporter.class)
.importFrom(new File("target/" + archiveName)).as(type);
DeploymentDescription dd = new DeploymentDescription("application", archive);
dd.shouldBeTestable(config.testable());
return Arrays.asList(dd);
}
return Collections.emptyList();
}