Skip to content

Releases: jcabi/jcabi-github

First stable version

12 Nov 16:18
Compare
Choose a tag to compare

This is the first version that enables true object oriented interaction with Github API v3, for example:

public class Main {
  public static void main(String[] args) {
    Github github = new Github.Simple(".. your OAuth token ..");
    Repo repo = github.repo("jcabi/jcabi-github");
    Issue issue = repo.issues().create("How are you?", "Please tell me...");
    issue.post("My first comment!");
  }
}