Package org.jboss.shrinkwrap.impl

Examples of org.jboss.shrinkwrap.impl.BeansXml.excludeFilters()


        BeansXml beansXml = new BeansXml();
        ArrayList<Exclude> filters = new ArrayList<Exclude>();
        for (Package pckg : excludedPackages) {
            filters.add(Exclude.match(pckg.getName() + ".**"));
        }
        beansXml.excludeFilters(filters.toArray(new Exclude[filters.size()]));
        return Deployments.baseDeployment(beansXml);
    }

    public static WebArchive baseDOSDeployment() {
        return baseDeployment(DOSBean.class.getPackage()).addClasses(ConfigTestBase.class, GoodBean.class, DOSBean.class);
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.