Package com.sun.enterprise.module.maven.sc

Examples of com.sun.enterprise.module.maven.sc.ScriptCreator


            File dd = new File(basedir, sd.get(file));
            try {
                Properties env;
                if (buildPlatformSpecific) {
                    env = createBuildPlatformSpecificEnvironment();
                    new ScriptCreator(env).create();
                } else {
                    env = createEnvironment(cf, dd, WINDOWS);
                    new ScriptCreator(env).create();
                    env = createEnvironment(cf, dd, UNIX);
                    new ScriptCreator(env).create();
                }
            } catch (Exception e) {
                throw new MojoExecutionException(e.getMessage());
            }
        }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.module.maven.sc.ScriptCreator

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.