Package org.apache.openejb.assembler

Examples of org.apache.openejb.assembler.Deployer


    @Parameter
    protected Map<String, String> systemVariables = new HashMap<String, String>();

    @Override
    public void execute() throws MojoExecutionException, MojoFailureException {
        final Deployer deployer = (Deployer) lookup("openejb/DeployerBusinessRemote");
        try {
            if (systemVariables.isEmpty()) {
                deployer.deploy(path);
            } else {
                final Properties prop = new Properties();
                prop.putAll(systemVariables);
                deployer.deploy(path, prop);
            }
        } catch (OpenEJBException e) {
            throw new TomEEException(e.getMessage(), e);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.openejb.assembler.Deployer

Copyright © 2018 www.massapicom. 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.