Package org.apache.commons.grant

Examples of org.apache.commons.grant.GrantProject


     * A helper method to create a new project
     *
     * #### this method could move to an AntUtils class.
     */   
    public static Project createProject(JellyContext context) {
        GrantProject project = new GrantProject();
        project.setPropsHandler(new JellyPropsHandler(context));

        BuildLogger logger = new NoBannerLogger();

        logger.setMessageOutputLevel( org.apache.tools.ant.Project.MSG_INFO );
        logger.setOutputPrintStream( System.out );
        logger.setErrorPrintStream( System.err);

        project.addBuildListener( logger );
       
        project.init();
        project.getBaseDir();

        return project;
    }
View Full Code Here

TOP

Related Classes of org.apache.commons.grant.GrantProject

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.