Package org.spiffyui.build

Examples of org.spiffyui.build.RevisionInfoBean


            MojoFailureException
    {
        Properties p = project.getProperties();

        try {
            RevisionInfoBean revInfo = RevisionInfoUtil.getRevisionInfo(basedir);

            getLog().debug("revInfo.getRevNumber(): " + revInfo.getRevNumber());

            p.setProperty("revision.number", revInfo.getRevNumber());
            p.setProperty("revision.date", revInfo.getRevDate());
        } catch (InterruptedException ie) {
            throw new BuildException(ie);
        }

    }
View Full Code Here

TOP

Related Classes of org.spiffyui.build.RevisionInfoBean

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.