Examples of VcsBuildInfo


Examples of net.mgorski.quicktag.api.VcsBuildInfo

      // intentionally left blank. if anything goes wrong, we just don't have this, bfd. 
    } catch (RuntimeException e) {
      // intentionally left blank. if anything goes wrong, we just don't have this, bfd.
    }

    return new VcsBuildInfo(wdPath, dirty, gitDescribeOutput, branchName);
  }
View Full Code Here

Examples of net.mgorski.quicktag.api.VcsBuildInfo

      // for Windows systems - escape backslashes
      wdPath = wdPath.replace("\\", "/");
    } catch (IOException e) {
      return null;
    }
    return new VcsBuildInfo(wdPath, null, infoOutput, null);
  }
View Full Code Here

Examples of net.mgorski.quicktag.api.VcsBuildInfo

        {
            dirty = true;
            commit = commit.substring(0, commit.length()-2);
        }

        return new VcsBuildInfo(wdPath, dirty, commit, branchName);
    }
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.