Examples of RevisionInfoBean


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
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.