Package com.caucho.git

Examples of com.caucho.git.GitCommitJar


  public String deployJarContents(String tag,
                                  Path jar,
                                  HashMap<String,String> attributes)
    throws IOException
  {
    GitCommitJar commit = new GitCommitJar(jar);

    try {
      return deployJar(tag, commit, attributes);
    }
    finally {
      commit.close();
    }
  }
View Full Code Here


  public String deployJarContents(String tag,
                                  InputStream is,
                                  HashMap<String,String> attributes)
    throws IOException
  {
    GitCommitJar commit = new GitCommitJar(is);

    try {
      return deployJar(tag, commit, attributes);
    }
    finally {
      commit.close();
    }
  }
View Full Code Here

TOP

Related Classes of com.caucho.git.GitCommitJar

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.