use of org.wildfly.swarm.resource.adapters.RARArchive in project wildfly-swarm by wildfly-swarm.
the class DefaultRarDeploymentFactory method archiveFromCurrentApp.
public static RARArchive archiveFromCurrentApp() throws Exception {
final RARArchive archive = ShrinkWrap.create(RARArchive.class, determineName());
final DefaultDeploymentFactory factory = new DefaultRarDeploymentFactory();
factory.setup(archive);
return archive;
}
Aggregations